How to Implement Retry Policies in Azure Event Hubs Consumers
Azure Event Hubs consumers do not have one set retry policy by default. You can make retry policies that fit what you need.
Event Hubs consumers usually use best-effort retry policies. You can set how many times to retry and how long to wait between tries.
You can pick fixed delay or exponential backoff strategies.
If you set the retry count to -1, it will…

