why default CONGESTION_CONTROL is cubic not bbr #4005
Answered
by
nibanks
ycchildcoder
asked this question in
Q&A
-
#define QUIC_CONGESTION_CONTROL_ALGORITHM_DEFAULT QUIC_CONGESTION_CONTROL_ALGORITHM_CUBIC |
Beta Was this translation helpful? Give feedback.
Answered by
nibanks
Dec 12, 2023
Replies: 1 comment 1 reply
-
Cubic is our default congestion control because the BBR implementation is v1 of the spec (the latest draft version is v3), which has known issues in widespread deployments, and the code isn't as well tested/verified as Cubic. Use BBR at your own risk. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
nibanks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Cubic is our default congestion control because the BBR implementation is v1 of the spec (the latest draft version is v3), which has known issues in widespread deployments, and the code isn't as well tested/verified as Cubic. Use BBR at your own risk.