我正在使用 Resque 工作人员处理队列中的作业,队列中有大量 > 1M 的作业,并且有一些需要删除的作业(错误添加)。用作业创建队列并不是一件容易的事,因此使用 resque-web 清除队列并再次添加正确的作业对我来说不是一个选择。
感谢任何建议。谢谢!
我正在使用 Resque 工作人员处理队列中的作业,队列中有大量 > 1M 的作业,并且有一些需要删除的作业(错误添加)。用作业创建队列并不是一件容易的事,因此使用 resque-web 清除队列并再次添加正确的作业对我来说不是一个选择。
感谢任何建议。谢谢!
要从队列中删除特定作业,您可以使用 destroy 方法。它非常易于使用,例如,如果您想删除一个具有 Post 类和 id x 的作业,该作业位于名为 queue1 的队列中,您可以这样做..
Resque::Job.destroy(queue1, Post, 'x')
如果要从队列中删除所有特定类型的作业,可以使用
Resque::Job.destroy(QueueName, ClassName)
您可以在以下位置找到它的文档
在 resque 的来源(Job 类)中有这样的方法,猜它是你需要的:)
# Removes a job from a queue. Expects a string queue name, a
# string class name, and, optionally, args.
#
# Returns the number of jobs destroyed.
#
# If no args are provided, it will remove all jobs of the class
# provided.
#
# That is, for these two jobs:
#
# { 'class' => 'UpdateGraph', 'args' => ['defunkt'] }
# { 'class' => 'UpdateGraph', 'args' => ['mojombo'] }
#
# The following call will remove both:
#
# Resque::Job.destroy(queue, 'UpdateGraph')
#
# Whereas specifying args will only remove the 2nd job:
#
# Resque::Job.destroy(queue, 'UpdateGraph', 'mojombo')
#
# This method can be potentially very slow and memory intensive,
# depending on the size of your queue, as it loads all jobs into
# a Ruby array before processing.
def self.destroy(queue, klass, *args)
如果您知道传递给作业的所有参数,则上述解决方案非常有用。如果您知道某些传递给作业的参数的情况,则以下脚本将起作用:
queue_name = 'a_queue'
jobs = Resque.data_store.peek_in_queue(queue_name, 0, 500_000);
deleted_count = 0
jobs.each do |job|
decoded_job = Resque.decode(job)
if decoded_job['class'] == 'CoolJob' && decoded_job['args'].include?('a_job_argument')
Resque.data_store.remove_from_queue(queue_name, job)
deleted_count += 1
puts "Deleted!"
end
end
puts deleted_count