Fix WebTransportImpl session flow control granting too frequently#613
Open
afrind wants to merge 1 commit intofacebook:mainfrom
Open
Fix WebTransportImpl session flow control granting too frequently#613afrind wants to merge 1 commit intofacebook:mainfrom
afrind wants to merge 1 commit intofacebook:mainfrom
Conversation
shouldGrantFlowControl() was checking (getCurrentOffset() - bytesRead_) i.e. bytes buffered but not yet consumed by the app. After every read this drops to ~0, satisfying the < window/2 condition unconditionally and sending WT_MAX_DATA after every tiny read regardless of how much window the peer actually had remaining. Fix: check (getMaxOffset() - bytesRead_) < window/2 instead — only grant when the app has consumed enough that the peer is within half a window of their limit. Also guard sendWTMaxData on the return value of recvFlowController_.grant() to avoid sending capsules when the flow controller is initialized to kMaxVarInt (no configured FC). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
joanna-jo
approved these changes
Apr 20, 2026
| .WillRepeatedly(Return(folly::unit)); | ||
| } | ||
|
|
||
| TEST_F(HTTPTransactionWebTransportTest, FrequentFlowControlGrants) { |
There was a problem hiding this comment.
redundant test? i think this is already tested above?
|
@joanna-jo has imported this pull request. If you are a Meta employee, you can view this in D101809433. |
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.
shouldGrantFlowControl() was checking (getCurrentOffset() - bytesRead_) i.e. bytes buffered but not yet consumed by the app. After every read this drops to ~0, satisfying the < window/2 condition unconditionally and sending WT_MAX_DATA after every tiny read regardless of how much window the peer actually had remaining.
Fix: check (getMaxOffset() - bytesRead_) < window/2 instead — only grant when the app has consumed enough that the peer is within half a window of their limit. Also guard sendWTMaxData on the return value of recvFlowController_.grant() to avoid sending capsules when the flow controller is initialized to kMaxVarInt (no configured FC).