I'm testing an implementation of a retry policy of azure event bus, and my question is how much time after, a letter will go to the dead letter queue.
Thanks
I'm testing an implementation of a retry policy of azure event bus, and my question is how much time after, a letter will go to the dead letter queue.
Thanks
Regarding when a message will be deadlettered, it's not a matter of time. It actually depends on 2 user configurable properties:
MaxDeliveryCount
property for a queue.EnableDeadLetteringOnMessageExpiration
property.For Topics & Subscription, there's another way to deadletter a message and that is to set true to deadletter a message when there's an exception in filter expression evaluation
property on a Subscription. You control this by specifying true/false for EnableDeadLetteringOnFilterEvaluationExceptions
property.