Add Proxygen and Proxygen Coro engines - #1097
Draft
lnicco wants to merge 2 commits into
Draft
Conversation
Owner
|
/benchmark -f proxygen |
Contributor
|
👋 Benchmark request received. A collaborator will review and approve the run. |
Owner
|
/benchmark -f proxygen-coro |
Contributor
|
👋 Benchmark request received. A collaborator will review and approve the run. |
Contributor
Benchmark ResultsFramework:
Full log |
Contributor
Benchmark ResultsFramework:
Full log |
Add a pinned, non-root Proxygen image with HTTP/1.1, TLS, h2c, HTTP/2, HTTP/3, static, JSON, upload, and RFC 6455 WebSocket support across 18 benchmark profiles.
Add a pinned, non-root Proxygen coroutine image using proxygen::coro::HTTPHandler and HTTPSourceHolder across the same 18 HTTP/1.1, TLS, h2c, HTTP/2, HTTP/3, static, JSON, upload, and WebSocket profiles.
lnicco
force-pushed
the
proxygen-engines-draft
branch
from
August 11, 2026 22:34
d01dfec to
6986f95
Compare
Owner
|
Hi, let me know if you need more runs. |
Author
|
thanks @MDA2AV ! I am handing this over to a teammate and we may need a few more iterations. But we'll publish only when everything looks good. Sorry for the noise |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Early review requested. This draft has been rewritten as an engine-only two-commit stack on the current main branch.
Summary
The regular entry uses one process with classic HTTPServer for every TCP listener and HQServer only for HTTP/3. The coroutine entry also uses one process: its four TCP listeners share one worker pool, while HTTP/3 uses the second pool required by the current coroutine API. Both use 1 MiB / 10 MiB HTTP/2 flow control, 1024 concurrent streams, and upstream benchmark-oriented QUIC batching and write-path settings.
Validation