Backoff Strategy¶
core.BackoffStrategy¶
Configuration defining a jittered exponential back off strategy.
{
"base_interval": "{...}",
"max_interval": "{...}"
}
- base_interval
(Duration, REQUIRED) The base interval to be used for the next back off computation. It should be greater than zero and less than or equal to max_interval.
- max_interval
(Duration) Specifies the maximum interval between retries. This parameter is optional, but must be greater than or equal to the base_interval if set. The default is 10 times the base_interval.