The maximum number of times the task can be retried.
OptionalbaseThe base delay before each retry in milliseconds. Defaults to 0 (immediate retry). When set to 0, retries happen immediately without delay.
OptionaldelayThe multiplier for the delay before each retry. Defaults to 1 (constant delay). Values > 1 create exponential backoff, values < 1 create decreasing delays.
OptionalmaxThe maximum delay before each retry in milliseconds. When specified, delays are capped at this value regardless of the exponential calculation.
Configuration for automatic task retry behavior with exponential backoff.
Retry Delay Calculation
The delay between retries follows an exponential backoff pattern:
Example