retried
(current retry attempt count starting from 0).
pow
- Power functionsqrt
- Square rootabs
- Absolute valueexp
- Exponentialfloor
- Floor functionceil
- Ceiling functionround
- Rounding functionmin
- Minimum of valuesmax
- Maximum of values1000
- Fixed 1 second delay1000 * (1 + retried)
- Linear backoff: 1s, 2s, 3s, 4s…pow(2, retried) * 1000
- Exponential backoff: 1s, 2s, 4s, 8s…max(1000, pow(2, retried) * 100)
- Exponential with minimum 1s delay