Rate limit handling (429)
Use this playbook when Relay returns 429 Too Many Requests.
Recommended handling
- Honor the
Retry-Afterheader. - Use exponential backoff with jitter to avoid synchronized retries.
- Keep retries idempotent with
Idempotency-Keyon POSTs. - Reduce burst traffic or batch work if limits persist.
Escalation
Open a support ticket if 429s persist after honoring Retry-After and backoff.