[true-async] bump base image to v0.7.0-rc.5 (adaptive throttle — HTTP/1 pipelined fix)#775
Closed
EdmondDantes wants to merge 1 commit into
Closed
[true-async] bump base image to v0.7.0-rc.5 (adaptive throttle — HTTP/1 pipelined fix)#775EdmondDantes wants to merge 1 commit into
EdmondDantes wants to merge 1 commit into
Conversation
rc.5 = rc.4 + adaptive reactor-poll throttle (true-async/php-async): batch HTTP/1 pipelined/keep-alive (coarse window) while polling fine for QUIC ACK/PTO timers, via libuv uv_next_timer_timeout(). Locally restores pipelined +29% (2.23M->2.88M); this run validates H1 recovery and that HTTP/3 holds at scale.
Contributor
Author
|
/benchmark -f true-async-server |
Contributor
|
👋 |
Contributor
Benchmark ResultsFramework:
Full log |
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.
What
Bumps true-async-server base image rc.4 → rc.5.
rc.5 = rc.4 +
Adaptive reactor-poll throttle (true-async/php-async): the fixed 1ms throttle (added to fix HTTP/3 PTO collapse) regressed pipelined/keep-alive HTTP/1 ~29% at high concurrency. rc.5 makes the poll window adaptive — 1ms when a QUIC ACK/PTO timer is imminent, batch up to 10ms otherwise (so HTTP/1 amortises the poll), via a new
uv_next_timer_timeout()in the TrueAsync libuv fork (graceful fallback to fixed 1ms on stock libuv).Local A/B (-c512): pipelined 2.23M → 2.88M (+29%).
Validating
Carries all rc.4 fixes (H3 bidi stream-credit replenish #79, patched libuv skip-redundant-EPOLL_CTL_MOD).