www/content/customization/general/retry.md
{{< g_version "v2.15.3-unreleased" >}}
Most external service calls go through a retry mechanism with exponential back-off on failures deemed retriable.
This includes:
Transient failures (network errors, HTTP 5xx, and 429 Too Many Requests) are automatically retried. Permanent failures (4xx, file-not-found, etc.) are not.
The configuration is as follows:
retry:
# Set max retry count.
# Setting to 1 disables retries (single attempt).
#
# Default: 10
attempts: 15
# Set delay between retry
#
# Default: 10s
delay: 10s
# Default: 5m
max_delay: 3m