Azure Service Bus: transient errors (exceptions) received through the message pump with built-in retry policy. Why?

我的未来我决定 提交于 2019-12-05 19:08:32

Officially answered here. In short, exceptions are bubbled for monitoring purpose after retry attempts. In long:

The transient exceptions you get from ExceptionHandler callback means those exceptions are bubled up after retry attempts. You should just log it for monitoring purposes. Take action if you need to. For eample, if your client loses network connectivity you should expect large number of communication exceptions bleeding through the handler. In such cases you may need to take proper actions to fix things. So the answer to question "should I ignore them?" really depends on conditions. - Serkant Karaca, Microsoft

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!