Optional
exponentiationOptional
initialInitial interval for the first retry attempt.
Retry interval will grow by a factor specified in exponentiationFactor
.
If a number is provided, it will be interpreted as milliseconds.
Optional
maxMax number of retry attempts (including the initial). When reached, the behavior specified in onMaxAttempts will be applied.
Optional
maxMax interval between retries.
Retry interval will grow by a factor specified in exponentiationFactor
.
If a number is provided, it will be interpreted as milliseconds.
Optional
onWhat to do when max attempts are reached.
If pause
, the invocation will enter the paused state and can be manually resumed from the CLI/UI.
If kill
, the invocation will get automatically killed.
Exponentiation factor to use when computing the next retry delay.