Fundamentals 8 min read

Why BBRv2 Redefines TCP Congestion Control: Lessons from BBRv1’s Shortcomings

BBRv2 improves upon the original BBR algorithm by more accurately measuring delivery rate, constraining inflight data with loss and ECN signals, and introducing a dynamic state machine that enhances fairness and coexistence with Reno/CUBIC, addressing the multi‑flow fairness and queueing issues that plagued BBRv1.

MaGe Linux Operations
MaGe Linux Operations
MaGe Linux Operations
Why BBRv2 Redefines TCP Congestion Control: Lessons from BBRv1’s Shortcomings

In October 2016 a YouTube video titled “Making Linux TCP Fast” introduced the BBR algorithm, marking a new era for TCP congestion control.

BBR is simple and based on a single‑flow ideal model, but real networks do not follow this model, leading to poor performance in multi‑flow scenarios, fairness issues, and frequent high‑retransmission throughput drops.

The root cause is that BBR must use more inflight data to probe potential bandwidth, similar to loss‑based algorithms, but without appropriate MD feedback, causing inflight to rise to high levels, leading to queuing and packet loss.

Multiple BBRv1 flows overestimate bandwidth due to the max_filter, causing the total sent data to exceed pipe capacity, creating standing queues and persistent packet loss because BBRv1 does not reduce the inflight cap (2 BDP).

BBRv2 addresses these problems by measuring delivery rate more precisely and constraining inflight using loss and ECN signals. It introduces a sub‑state machine within the ProbeBW state.

Key mechanisms of BBRv2 include:

Real‑time tracking of loss rate and ECN marks to adjust inflight_hi/lo and limit actual inflight.

Real‑time tracking of loss and ECN marks, supplemented by fairness guarantees, to drive sub‑state transitions.

In the cruise state, preserving headroom as a “common‑pool contribution”.

BBRv2 reserves an AIMD‑cycle window for Reno/CUBIC equal to 0.5 × Max_cwnd (≈ BDP RTTs). Two probe‑up phases are spaced by at least this window, and probe‑up proceeds only if no loss is observed, enabling friendly coexistence.

Typical BDP values are similar for data‑center (≈ 66 packets) and Internet (≈ 62 packets) networks, allowing BBRv2 to probe up after about 60 RTTs (≈ 2 s on the Internet, ≈ 1.3 ms in DC), a time scale that adapts to network conditions.

Compared with BBRv1’s fixed 8‑round probe, BBRv2’s longer, adaptive intervals provide a more robust coexistence strategy, especially in asynchronous multi‑flow environments where the BDP‑RTT AIMD cycle follows a right‑tailed Gaussian distribution.

Drawing on concepts from “The Beauty of Systems” such as “bounded rationality” and the “tragedy of the commons”, BBRv2’s feedback mechanisms mitigate selfish bandwidth consumption, offering a more equitable solution than BBRv1.

Although BBRv2 is not yet merged into the Linux kernel (as of v6.1‑rc2) and remains in Google’s branch, it shows promise for long‑term evolution and may eventually become the default algorithm, succeeding CUBIC.

In work discussing TCP CC evolution inside data centers, short bursts favor increasing init cwnd to about one BDP and reusing long‑lived connections; for long flows, BBRv2 is preferred as it adapts better and includes DCTCP features.
Original Source

Signed-in readers can open the original source through BestHub's protected redirect.

Sign in to view source
Republication Notice

This article has been distilled and summarized from source material, then republished for learning and reference. If you believe it infringes your rights, please contactadmin@besthub.devand we will review it promptly.

TCPLinuxcongestion controlBBRv2
MaGe Linux Operations
Written by

MaGe Linux Operations

Founded in 2009, MaGe Education is a top Chinese high‑end IT training brand. Its graduates earn 12K+ RMB salaries, and the school has trained tens of thousands of students. It offers high‑pay courses in Linux cloud operations, Python full‑stack, automation, data analysis, AI, and Go high‑concurrency architecture. Thanks to quality courses and a solid reputation, it has talent partnerships with numerous internet firms.

0 followers
Reader feedback

How this landed with the community

Sign in to like

Rate this article

Was this worth your time?

Sign in to rate
Discussion

0 Comments

Thoughtful readers leave field notes, pushback, and hard-won operational detail here.