BackoffPolicy implements an exponential backoff policy. The delay between
retries is randomly computed between 0 and the "exponential delay" as
recommended in Exponential Backoff And Jitter. The retry delay starts from
initial and grows exponentially by factor at every retry. The maximum retry
delay is capped by maximum.
There is no parameter to limit the number of retries. This is intended as
such logic should be implemented upstream (e.g. in a Retrier).
BackoffPolicy implements an exponential backoff policy. The delay between retries is randomly computed between 0 and the "exponential delay" as recommended in Exponential Backoff And Jitter. The retry delay starts from initial and grows exponentially by factor at every retry. The maximum retry delay is capped by maximum.
There is no parameter to limit the number of retries. This is intended as such logic should be implemented upstream (e.g. in a Retrier).