Can I trigger multiple azure function on a single queue trigger. Use case is that i am storing auth token in a queue, and multiple functions take up the token to call the different endpoints respectively. Or will the first one grab the message (token) and remove it from the queue.
3 Answers
In this scenario, I would use ServiceBusTrigger function. You can create a topic in a Service Bus, then for this one topic you can have multiple subscribers. So, even if 1 subscriber has finished going trough the messages, you can still have a subscriber which has not even started once and don't worry about this subscriber missing any message.
EDIT
Useful links