了解 resque 工作人员何时完成工作
我正在与 Resque-worker(5 个工人)一起执行一些工作。现在,当这项工作完成/完成时,我想触发另一个工作程序来处理先前工作程序存储在数据库中的数据。这样做最合适的方法是什么?
I am performing some job with Resque-worker (5 workers). Now, when this job is completed/done I want to trigger another worker which processes the data previous worker stored in db. What would be the most appropriate method of doing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定这是否有任何帮助,但是您看过
resque-status
gem 吗?这样您就可以跟踪给定作业的状态,以查看它何时完成。但我担心没有自动触发功能来启动新的工作人员。
I'm not sure if this is of any help, but have you had a look at the
resque-status
gem?That way you can track a given jobs' status, to see when it is completed. But I'm affraid there are no auto-trigger functionality, to start new workers.