An Azure service that automates the access and use of data across clouds without writing code.
Hi V J
Thanks for reaching out on Microsoft Q&A!
429 errors mean the backend has enforced a rate limit, originating from AAD Graph/Graph Subscription Services. This is Usually tied to triggers like “When a new email arrives” and occurs before Outlook even processes the email payload.
Below are the recommended fixes from Microsoft’s throttling guidance:
- By default, retry logic is enabled on Logic App triggers; Remove those to make sure your logic app will execute the trigger only once, instead of exponentially every run (which even raises more problems); Please note not every trigger supports this value, it depends on what Outlook trigger you use;
- Set concurrency control to 1, which avoid most of the issue; This makes processing slower though, but if it's not time-critical this may be a solution; Beware: once the trigger is set to concurrency control it's irreversible.
- Use a Shared Mailbox Instead of a User Mailbox, as personal mailbox traffic counts against your identity's Graph limits. Shared Mailboxes distribute load differently.
Please click ‘Accept answer’ if you think my answer is helpful. Feel free to drop additional queries in the comments below!
Kind regards,
Sonny