File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Retry strategy
22
33For any request that you want to retry automatically, we recommend that you do
4- so using a jittered exponential backoff algorithm.
4+ so using a truncated exponential backoff algorithm with jitter .
55
66## Overview
77
@@ -12,9 +12,10 @@ some care to do correctly as incorrect retry strategies may cause many requests
1212to be (re)sent in a short amount of time, which may eventually cause them to be
1313throttled or otherwise permanently dropped. To mitigate this
1414[ thundering herd problem] ( https://en.wikipedia.org/wiki/Thundering_herd_problem ) ,
15- we recommend you implement retries with jittered truncated exponential backoff.
15+ we recommend you implement retries using a truncated exponential backoff with
16+ jitter.
1617
17- ## Jittered truncated exponential backoff algorithm
18+ ## Truncated exponential backoff algorithm with jitter
1819
1920Here is an example of algorithm that implements the recommended retry strategy:
2021
You can’t perform that action at this time.
0 commit comments