NServiceBus默认“停止”行为
假设我的订阅者正在处理程序中处理一条消息,需要大约 1 分钟或更长时间才能完成。
订阅托管在 NServiceBus.Host.exe 进程(版本 2 或 3)中。
订阅者是完全事务性的,因此不存在任何外部依赖关系,这些依赖关系在发生故障时会处于不良状态。
在开始处理消息后,由于重新启动/升级或其他原因,服务会收到停止信号(不是中止或终止)。
问题: 将会发生什么:
A. 服务是否会等到处理程序完成处理后再停止?
B. 服务是否会中止,从而中断消息处理,然后在服务再次启动时重新运行消息?
亲切的问候
Say my subscriber is processing a message in a handler and takes about 1 min or more to complete.
The subscribed is hosted in the NServiceBus.Host.exe process (version 2 or 3).
The subscriber IS fully transactional so that there are no external dependencies which would be left in bad state upon a breakdown.
Just after started handling the message, the service receives a stop signal (not abort or kill), due to a restart/upgrade or other.
Question:
What will happen:
A.
Will the service wait until the handler has completed its processing before stopping?
B.
Will the service abort whereby the message processing wil be interrupted and then rerun the message when the service is started again?
Kind regards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
选项B就是将要发生的事情。我们不知道要等待多长时间,因此我们只是关闭端点。
Option B is whats is going to happen. We can't know how long to wait so we just shut the endpoint down.