我的应用程序创建必须按用户顺序处理的resque作业,并且应尽快处理它们(最大延迟时间为1秒)。
示例:为user1创建job1和job2,为user2创建job3。 Resque可以并行处理job1和job3,但是应该按顺序处理job1和job2。
我对解决方案有不同的想法:
rake resque:work QUEUE=queue_1
)。用户在运行时(例如登录,每天等)分配给队列/工作人员。您是否在实践中遇到过其中一种情况?或者还有其他可能值得思考的想法吗?我很感激任何意见,谢谢!
答案 0 :(得分:5)
感谢@Isotope的答案,我终于找到了一个似乎有效的解决方案(使用resque-retry和lock in redis:
class MyJob
extend Resque::Plugins::Retry
# directly enqueue job when lock occurred
@retry_delay = 0
# we don't need the limit because sometimes the lock should be cleared
@retry_limit = 10000
# just catch lock timeouts
@retry_exceptions = [Redis::Lock::LockTimeout]
def self.perform(user_id, ...)
# Lock the job for given user.
# If there is already another job for the user in progress,
# Redis::Lock::LockTimeout is raised and the job is requeued.
Redis::Lock.new("my_job.user##{user_id}",
:expiration => 1,
# We don't want to wait for the lock, just requeue the job as fast as possible
:timeout => 0.1
).lock do
# do your stuff here ...
end
end
end
我在这里使用来自https://github.com/nateware/redis-objects的Redis :: Lock(它封装了来自http://redis.io/commands/setex的模式)。
答案 1 :(得分:2)
我以前做过这个。
确保顺序执行此类操作的最佳解决方案是将job1结束为job2排队。 job1和job2可以进入相同的队列或不同的队列,顺序无关紧要,这取决于你。
任何其他解决方案,例如同时排队job1 + 2但是告诉job2以0.5秒开始会导致竞争条件,所以不建议这样做。
让job1触发job2也很容易。
如果您想要另一个选项:我的最终建议是将两个作业捆绑到一个作业中,并添加一个参数,如果第二部分也应该被触发。
e.g。
def my_job(id, etc, etc, do_job_two = false)
...job_1 stuff...
if do_job_two
...job_2 stuff...
end
end