Hello It is VMS,
Thanks for your question.
This may happen because when the service has been idle, it may not have sufficient resources immediately available to handle incoming requests. The first request after such an idle period can trigger the service to scale up its resources. During this scaling process, the service may temporarily reject requests, resulting in a 429 error.
To mitigate this issue, consider the following strategies:
- Implement Retry Logic (As you have implemented currently)
- Periodic Warm-Up Requests - Send periodic light weight request to keep it active
The above is cited from:
You can mark it 'Accept Answer' and 'Upvote' if this helped you
Regards,
Abiola