Marina
Marina

Reputation: 45

Microsoft Graph API Throttling limits

I read about throttling limits. And it is 10000 requests per 10 minutes. But I have 429 (Too Many Requests) error code after 77 requests. I use Microsoft.Graph 3.8.0 .net core sdk and developers subscription. Maybe developers subscription has it's own limits? Also some of my requests are batch requests (15 requests per each batch). How batch request will be handled? As 1 or as 15 requests? But 77x15=1155. It's also far from 10000.

Pleas help me figure out this issue

Btw, I test it with message resource

Upvotes: 1

Views: 1995

Answers (1)

baywet
baywet

Reputation: 5302

Limits have been deployed to v1 recently for outlook resources (messages, events...) that also impact batching.
Batch items are currently individually towards the limit and the items are processed parallelly which is triggering the 4 concurrent requests limit.
We're investigating how to resolve the issue and updates will be posted on this thread

Upvotes: 2

Related Questions