forked from anza-xyz/agave
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix broken parallelism in quic-client (anza-xyz#2526)
* Fix broken parallelism in quic-client Fixes excessive fragmentation by TPU clients leading to a large number of streams per conn in 'sending' state simultaneously. This, in turn, requires excessive in-memory buffering server-side to reassemble fragmented transactions. - Simplifies QuicClient::send_batch to enqueue send operations in sequential order - Removes the "max_parallel_streams" config option The quic-client now produces an ordered fragment stream when scheduling send operations from a single-thread. * quic-client: remove outdated test --------- Co-authored-by: Richard Patel <[email protected]> Co-authored-by: Alessandro Decina <[email protected]>
- Loading branch information
1 parent
14fe368
commit 76cbf1a
Showing
2 changed files
with
8 additions
and
122 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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