You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 12, 2022. It is now read-only.
If we use the same retry values, everywhere we're setting ourselves up for a thundering herd. What happens is that requests tend to line up with each other on the retry intervals over time. So adding jitter will help break up the cycles. Here's a great article from AWS with some data https://aws.amazon.com/blogs/architecture/exponential-backoff-and-jitter/
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
If we use the same retry values, everywhere we're setting ourselves up for a thundering herd. What happens is that requests tend to line up with each other on the retry intervals over time. So adding jitter will help break up the cycles. Here's a great article from AWS with some data https://aws.amazon.com/blogs/architecture/exponential-backoff-and-jitter/
The text was updated successfully, but these errors were encountered: