Reputation: 546
I am having two azure function one is http function and another one is queue trigger function. In http function i am adding a messasge to queue and in queue trigger processing it. When i log the message in queue trigger sometimes its triggering multiple times with the same message ? What will be the reason ?
Thanks in advance
Upvotes: 0
Views: 1064
Reputation: 25994
There might be several reasons. Without looking at the code, my guesses would be the following:
A few resources on message de-duplication you might find useful:
Upvotes: 5