My setup:
- I've created an Azure Service Bus Queue without sessions enabled
- I have an Azure Logic App created with the
When a message is received in a queue (peek-lock)
trigger - The trigger has an interval of
15 seconds
My results:
- I'm putting messages on the queue at a faster-than-15-second pace
- My Azure Logic App trigger picks up multiple queue messages at a time, much faster than 1 message every 15 seconds
My questions:
- Is the trigger of this connector designed to pick up more than 1 queued message at a time (during an
Interval
?)? - If so, how many?
- Is there a way to change the number of messages received at once?
- What, exactly, is the
Interval
setting doing?