Enable BBR on a Linux server to improve throughput on high-latency or lossy connections
Learn how BBR's bandwidth and RTT measurement approach differs from traditional TCP algorithms like CUBIC
Review BBRv3 reference materials before integrating it into a custom QUIC-based networking stack
Follow the IETF standardization progress to understand BBR's future in internet protocol standards
| google/bbr | bwmarrin/discordgo | fontsource/fontsource | |
|---|---|---|---|
| Stars | 5,913 | 5,913 | 5,913 |
| Language | — | Go | TypeScript |
| Setup difficulty | easy | easy | easy |
| Complexity | 1/5 | 2/5 | 1/5 |
| Audience | ops devops | developer | developer |
Figures from each repo's GitHub metadata at analysis time.
BBRv1 is already in the Linux kernel since version 4.9, enable it with a single sysctl change, no install needed.
BBR is a congestion control algorithm developed by Google. Congestion control is the part of a network connection that decides how fast to send data, backing off when the network is overwhelmed and speeding up when there is capacity available. Traditional algorithms used packet loss as the main signal for when to slow down, but BBR instead measures the actual bandwidth and round-trip time of the connection to make better decisions about the sending rate. This repository is a home for documentation, scripts, and reference materials related to BBR. The actual algorithm code lives in the Linux kernel and in Google's QUIC networking library, with links to both provided in the README. The repository covers multiple versions of BBR, including BBRv1, which was merged into the Linux kernel in 2016, and BBRv3, which is the current version from Google's BBR team. The project has practical impact: Google enabled BBR for its own traffic, YouTube, and Google Cloud Platform, and reported significant improvements in throughput and latency compared to older algorithms, particularly over long-distance and lossy connections. There is an article from the Association for Computing Machinery that describes how the algorithm works, along with recorded talks for those who want to go deeper. BBR is also being formalized as an internet standard. An Internet Draft is in progress through the IETF, the organization that defines internet protocols, with the goal of publishing it as an experimental RFC. If you want to use BBR, you likely already have access to it. BBRv1 has been part of the Linux kernel since version 4.9, so most modern Linux systems can enable it without installing anything from this repository.
Documentation and scripts for BBR, Google's network congestion control algorithm that improves connection speed by measuring actual bandwidth and round-trip time instead of waiting for packet loss.
License not specified in the explanation, the algorithm is part of the Linux kernel.
Setup difficulty is rated easy, with roughly 5min to a first successful run.
Mainly ops devops.
This repo across BitVibe Labs
Verify against the repo before relying on details.