As per the information provided by Microsoft here, the throttling limit for Reports service of Microsoft Graph API, per app, per tenant is 14 requests in 10 minutes.
But from my application, I make 5 requests simultaneously (using multi-threading) and I am getting the TenantThrottleThresholdExceeded exception.
I am wondering why would I get the throttling exception for just 5 requests? Anybody else is facing this?
Please help.
Outlook APIs have a limit of 4 concurrent requests. This has an impact on reporting when asking reports for Outlook objects. Make sure you don't send your requests in parallel, or reduce parallelization to 4 and you shouldn't get throttled anymore