Why we need exponential backoff with jitter when retrying
The problem
You want to retry an operation e.g. a network request. If you spam requests, you will overload the server and end up getting rate limited (429 too many requests).
This leads us to exponential backoff first. For every retry, we wait longer...
tigerabrodi.blog4 min read