> ## Documentation Index
> Fetch the complete documentation index at: https://getconvoy.io/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Retry Schedule

> How and when Convoy retries failed deliveries.

When an endpoint is experiencing a temporary disruption of service, events sent to it might fail and require you to retry them. Convoy allows you to set the number of attempts to a particular endpoint and how to initiate the retry. Convoy supports two retry strategies:

* `default`: retries are done in linear time. It's best to set a reasonable number of attempts if the duration is short.
* `exponential-backoff`: retries events while progressively increasing the time before the next attempt. The default schedule looks like this:
  * 10 seconds
  * 30 seconds
  * 1 minute
  * 3 minutes
  * 5 minutes
  * 10 minutes
  * 15 minutes

Retry strategies are configured per project.
