-
Notifications
You must be signed in to change notification settings - Fork 254
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
Parameterize max streams per ms #707
Parameterize max streams per ms #707
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #707 +/- ##
=======================================
Coverage 81.9% 81.9%
=======================================
Files 851 851
Lines 231100 231137 +37
=======================================
+ Hits 189395 189465 +70
+ Misses 41705 41672 -33 |
82edd41
to
bdf8a48
Compare
Backports to the beta branch are to be avoided unless absolutely necessary for fixing bugs, security issues, and perf regressions. Changes intended for backport should be structured such that a minimum effective diff can be committed separately from any refactoring, plumbing, cleanup, etc that are not strictly necessary to achieve the goal. Any of the latter should go only into master and ride the normal stabilization schedule. Exceptions include CI/metrics changes, CLI improvements and documentation updates on a case by case basis. |
Make PPS a parameter instead of the hard coded (cherry picked from commit f2aa4f0) # Conflicts: # quic-client/tests/quic_client.rs
Make PPS a parameter instead of the hard coded
Backports to the stable branch are to be avoided unless absolutely necessary for fixing bugs, security issues, and perf regressions. Changes intended for backport should be structured such that a minimum effective diff can be committed separately from any refactoring, plumbing, cleanup, etc that are not strictly necessary to achieve the goal. Any of the latter should go only into master and ride the normal stabilization schedule. |
Make PPS a parameter instead of the hard coded (cherry picked from commit f2aa4f0) # Conflicts: # client/src/connection_cache.rs # core/src/tpu.rs # quic-client/tests/quic_client.rs # streamer/src/nonblocking/quic.rs # streamer/src/nonblocking/stream_throttle.rs
Make PPS a parameter instead of the hard coded (cherry picked from commit f2aa4f0) # Conflicts: # client/src/connection_cache.rs # core/src/tpu.rs # quic-client/tests/quic_client.rs # streamer/src/nonblocking/quic.rs # streamer/src/nonblocking/stream_throttle.rs
…za-xyz#828) Make PPS a parameter instead of the hard coded
Problem
The upper layer like jato-relayer may want different PPS for tpu and tpu_forward than the default value. Our validator may use different values for tpu vs forward. This changes makes it possible.
Summary of Changes
Make it parameter instead of the hard coded
Fixes #