Backoff exponential calculator
Calculate and quickly visualize the behavior of an exponential backoff algorithm.
Configuration Parameters
The initial time to wait before the first retry.
The maximum number of times to retry the operation.
The factor by which the delay increases for each retry.
The percentage of random variation to add to the delay.
Global Metrics
31.0s
Total Time
The cumulative wait time across all retries.
6.2s
Average Delay
The average wait time for a single retry.
4.0s
Median Delay
The middle value of all retry delays, resistant to outliers.
16.0s
Maximum Delay
The longest single wait time between retries.
Retry Details
Attempt | Wait Delay | Cumulative Time | Progress |
---|---|---|---|
#1 | 1.0s | 1.0s | |
#2 | 2.0s | 3.0s | |
#3 | 4.0s | 7.0s | |
#4 | 8.0s | 15.0s | |
#5 | 16.0s | 31.0s |