I have this azure function triggered by queue storage.
function.json:
"retry": {
"strategy": "exponentialBackoff",
"maxRetryCount": 5,
"minimumInterval": "00:01:00",
"maximumInterval": "14:00:00"
}
If message A
fails,
message B
is processed andmessage A
is put in the back of thequeue
.message A
is retried until succeeded or reachedmaxRetryCount
andmessage B
with other messages waits until function is finished withmessage A
.
Which one is correct?
Didn't find the answer in Azure docs.