Reputation: 9
I am using MS Graph API to subscribe users calendar for meeting notifications. There is no issue with few meetings for multiple users but when we run our load test with 100 meetings then there were lots of missing booking notifications.
For better understanding, I m adding a few steps to verify:
I have run a different load with 2 users and the result is below:
So my question is that, is there any kind of limitation in Graph Notification or any other issue!
Upvotes: 0
Views: 272
Reputation: 1791
You are experiencing throttling. According to Graph throttling guide for Outlook service, you can have up to 4 concurrent requested per user calendar. a large number of your requests are throttled, thus no events are created - no change notifications..
My recommendation:
Upvotes: 0