Find cause for error 429 (throttling) in Azure portal

7k Views Asked by At

We have a problem with the Azure Portal for a specific tenant. It shows the following error message as if there were more than 12k requests to the portal. We make like 15k requests but to the Cosmos DB. Something new we did was to create an Azure Container Registry and 5 containers in the Resource Group that have FFmpeg running and streaming. Any clues about how to find the origin of this error?

https://i.imgur.com/GGuNQe7.png

Number of tenant-level requests exceeded the limit of '12000' for time interval '01:00:00'. Please try again after '300' seconds. (Code: TenantRequestsThrottled)

1

There are 1 best solutions below

1
On

You receive the HTTP status code 429 Too many requests. The response includes a Retry-After value, which specifies the number of seconds your application should wait (or sleep) before sending the next request. If you send a request before the retry value has elapsed, your request isn't processed and a new retry value is returned.

Please follow the link for solution: URL