Azure Management API - 429 Too many requests
Asked Answered
P

1

7

I built a web app that does queries to the Azure Rest API and creates resources (WebApp, 2 MySQL Databases, Adds a Hostname, Add an SSL Cert...)

All this queries go to: https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/....

After a few queries, I get a "429 - Too many requests".

Which limit does the Management API have? My account is not in Free Trial.

Seems like I just can make around 10...

Thank you

Prelect answered 22/10, 2015 at 13:34 Comment(0)
A
6

Found my way here via Google after running into the same problem. There are limits, but they aren't that low by default.

The following page describes all Azure subscription limits: https://azure.microsoft.com/en-us/documentation/articles/azure-subscription-service-limits

The relevant limits (in case the page is taken down):

Resource                            Default Limit   Maximum Limit
Resource Manager API Reads          15000 per hour  15000 per hour
Resource Manager API Writes         1200 per hour   1200 per hour
Resource Manager API request size   4194304 bytes   4194304 bytes

If you get this error with only 10 requests, you might want to contact Microsoft as there could be soft limits on your subscription.

Almeta answered 30/6, 2016 at 15:32 Comment(1)
New home for this information: learn.microsoft.com/en-us/azure/azure-resource-manager/… (after 6 years this is still very relevant - especially if you are plugging in to the new Azure RM SDKs).Niobic

© 2022 - 2024 — McMap. All rights reserved.