2 Comments
User's avatar
тна Return to thread
Fran Soto's avatar

Great to see how they solved an initial problem of retries!

Still, exponential backoff + jitter could create a retry storm if there are calls multiple layers deep. So use it with care! If those multiple layers exist, implementing some retry budget with a token bucket or circuit breakers can help to avoid taking everything down on retries.

Expand full comment
Neo Kim's avatar

thanks, also implement exponential backoff + jitter on each inner layer could help.

Expand full comment