0

we have webhook subscription for blob create events to Azure function (eventgrid trigger), we noticed same event are received multiple time after random time interval. tried debugging locally using ngrok same behavior

What could be possible problems in this scenario

Thank you! Dyan

1

1 Answer 1

1

In Event trigger if the message from end point is not received or any error occurred while triggering the event, Then it is triggered after some interval of time, so while creating the Event Trigger to function app you need to set the retry policy to 1 so that only once the event is triggered, this process worked for me, it might work for you too.

enter image description here

Thanks to @Roman Kiss ,After sending a message, Event Grid waits 30 seconds for a response. If the endpoint has not answered after 30 seconds, the message is queued for retry. For event delivery, Event Grid employs an exponential backoff retry mechanism.

So try setting it 1 as above.

References taken from:

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.