Hello,
I created a Queue and an Azure Function with a queue trigger and it's all working perfectly.
What I'm noticing though from my logs is that if I quickly add 10 items to the queue, it seems as if the Azure Function will process them all at the same time. I was hoping this would actually process them 1 at a time so that once the first item is
de-queued it processes it, then de-queues the second one. I think what's happening is it's picking up all 10 and then running them simultaneously.
Does anyone know if this is accurate or if there is a way to process the one at a time?
Thanks