Reputation: 12328
In an Azure Web Job you can have functions triggered by an Azure queue in a continuously running job.
When a message has been read from a queue, it is deleted.
But if for some reason my Job crashes (think a VM restart) the current Job that was not finished will crash and I will lose the information in the message.
Is it possible to configure Azure Web Jobs not to delete messages from queue automatically, and do it manually when my job finishes?
Upvotes: 1
Views: 790
Reputation: 28425
There are two cases:
The answer your question, if the VM restarts you are in case #2 and the message should show up again after, at most, 10 minutes.
Upvotes: 3