使用新代码更新 resque 工作线程而不终止它们
假设我们更改了一位 Resque 工作人员的代码。我们如何将该代码部署到工作人员,而不是在任务中间停止工作人员(从而永远从队列中删除任务并且任务尚未完成)并重新加载工作人员?
Say that we change the code for one of our Resque workers. How can we deploy that code to the workers, short of stopping the workers in the middle of the task (thereby removing the task from the queue forever and with it not being finished) and reloading the worker?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最终直接杀死了工人。
Ended up simply killing the workers.