Weighted Round Robin
Embed This Widget
Add the script tag and a data attribute to embed this widget.
Embed via iframe for maximum compatibility.
<iframe src="https://statuscodefyi.com/iframe/glossary/weighted-round-robin/" width="420" height="400" frameborder="0" style="border:0;border-radius:10px;max-width:100%" loading="lazy"></iframe>
Paste this URL in WordPress, Medium, or any oEmbed-compatible platform.
https://statuscodefyi.com/glossary/weighted-round-robin/
Add a dynamic SVG badge to your README or docs.
[](https://statuscodefyi.com/glossary/weighted-round-robin/)
Use the native HTML custom element.
A load balancing algorithm that extends basic round-robin by assigning a numeric weight to each backend server. Requests are distributed in proportion to weights — a server with weight 3 receives three times as many requests as a server with weight 1. This allows operators to direct more traffic to higher-capacity servers while keeping lower-capacity or canary backends in the pool. Weights can be set statically in configuration or adjusted dynamically based on real-time metrics such as response time or error rate by adaptive algorithms like EWMA (Exponentially Weighted Moving Average).