logo
Azure Logic Apps - Interview Questions and Answers
Explain the difference between polling and webhook triggers in Azure Logic Apps.
Polling triggers in Azure Logic Apps involve periodically checking a specific resource for new data or changes, whereas webhook triggers rely on event-driven notifications sent by the external service to initiate the logic app. Polling consumes more resources and can cause delays due to its scheduled nature, while webhooks provide real-time responses with lower latency and reduced resource usage. However, implementing webhooks may require additional configuration and support from the external service.