在 Resque 中重新排队失败的作业
如果在处理后台作业时发生异常,那么我如何才能将其再次放入队列中以便自动处理。
在我的场景中,后台进程具有外部(HTTP)调用,因此可能会出现网络延迟,因此我希望在网络故障的情况下使其重新排队。
If an exception occurred in processing of a background job then how can i make it in queue again so it automatically get processed.
As in my scenario the background process having external (HTTP) calls so there are chances of network latency, so i would like to make it re-queue in case of network failure.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一个名为
resque-retry
的 gem 可以处理这个问题。“为 resque 作业提供重试、延迟和指数退避支持”
https://github.com/lantins/resque-重试
如果您需要 ruby 1.9 兼容版本,请查看 fork,有人一直在努力使其正常运行。
A gem called
resque-retry
can handle this."provides retry, delay and exponential backoff support for resque jobs"
https://github.com/lantins/resque-retry
If you need a ruby 1.9 compatible version have a look through the forks, someone has been working on making it function correctly.