# Overview An approach for retying during [[Exception Handling]] where the wait time is increased exponentially after every retry attempt. # Key Considerations # Pros - Prevents from overloading the server due to too many retries at once # Cons - Can result in very long backoff times # Use Cases # Related Topics