Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop support for HTTP/2 on the producer server #57

Merged
merged 1 commit into from
Oct 17, 2022
Merged

Conversation

jorgebay
Copy link
Contributor

HTTP/2 can break request and responses into multiple streamids each, interleaving partial request bodies.
If we don't allocate memory to read in parrallel, we can't independently move forward a request body without moving the whole stream forward. The resolution is to remove HTTP/2 support.

Fixes #56.

HTTP/2 can break request and responses into multiple streamids
each, interleaving _partial_ request bodies.
If we don't allocate memory to read in parrallel, we can't
independently move forward a request body without moving the
whole stream forward. The resolution is to remove HTTP/2 support.

Fixes #56.
@jorgebay jorgebay merged commit 05e1ce7 into main Oct 17, 2022
@jorgebay jorgebay deleted the producer-http1-only branch October 17, 2022 07:21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Supporting HTTP/2 on the producer interface requires unbounded memory allocation
1 participant