Timeouts and Failures
Timeouts
The API timeout for all operations is set to 60 seconds. If a request exceeds this duration, it will automatically be terminated.
Recommended Retry and Failure Approach
Our recommended retry and failure approach is to implement an exponential backoff strategy. Exponential backoff is a method where the wait time between retries increases exponentially, typically starting with a small delay and doubling with each subsequent retry. Ensure your application implements appropriate maximum retry limits and handles failures gracefully if the issue persists beyond the retry attempts.
Updated 7 months ago