This page documents the retry configurations implemented for credit requests to handle transient communication failures with external clients.
The retry mechanism uses an exponential backoff strategy. This prevents overloading client servers when they are struggling.
Retries are only triggered for transient issues:
ResourceAccessException (client is unreachable or times out).HttpServerErrorException (client returns a 5xx status code).We do not retry on client-side errors (4xx codes like 400 Bad Request or 401 Unauthorized), as repeating the request will not change the outcome.
We may choose to enable or disable this feature if necessary.
Look at reconciliations