Azure Http Request quota?

Tomislav Đurić 1 Reputation point
2022-11-14T16:43:51.637+00:00

Is there any throttling of requests that I should be aware when sending a lot of requests?

I was testing my service on kubernetes cluster with 5 nodes. API calls were very simple, just returning a string without any operations and it did process around 100 requests/sec, and with more testing it good lower and lower.

Even thought this is a cheapest tier for node pool (35€ monthly), i would expect it to perform much much faster.

Is my expectation wrong, or there is something else im missing?

Thank you!

Azure Kubernetes Service (AKS)
Azure Kubernetes Service (AKS)
An Azure service that provides serverless Kubernetes, an integrated continuous integration and continuous delivery experience, and enterprise-grade security and governance.
1,855 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Lj-MSFT 81 Reputation points Microsoft Employee
    2022-12-13T17:19:18.007+00:00

    @Tomislav Đurić : when the requests first reach ARM, the requests are checked on the ARM level and throttled if the requests exceed the limit. Once the request passes through the ARM, it goes to the particular resource provider ( for example, CRP - compute resource provider, NRP- network resource provider), and then limits are checked against those resource provider and the corresponding resource.

    For more details, kindly refer : https://learn.microsoft.com/en-us/azure/azure-resource-manager/management/request-limits-and-throttling

    0 comments No comments