Resque Workers 在错误的队列上工作
我有几个 Resque 作业正在运行,每个作业都在一个单独的终端窗口中启动,如下所示:
QUEUE=queue_1 rake environment resque:work
QUEUE=queue_2 rake environment resque:work
首先启动队列 1,然后启动队列 2。问题是,无论我向新工作人员发送什么 QUEUE 选项,它们都会继续在队列 1 上工作 - - 即使我把两者都关闭了。这可能是配置问题吗?我没有看到任何地方提到这个问题。
I have a few Resque jobs running, each started in a separate terminal window like so:
QUEUE=queue_1 rake environment resque:work
QUEUE=queue_2 rake environment resque:work
Queue 1 started first, then queue 2. The problem is, no matter what QUEUE options I send to new workers, they just keep working on queue 1 -- even if I shut both down. Might this a configuration problem? I haven't seen this issue mentioned anywhere.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否在 Rakefile 中定义的“environment”或“resque:setup”任务中显式设置 ENV['QUEUE'] 环境变量?
Are you explicitly setting the ENV['QUEUE'] environment variable in the "environment" or "resque:setup" tasks defined in the Rakefile?