如何在不清除整个队列的情况下从Resque队列中删除特定作业?

时间:2012-04-23 04:53:03

标签: ruby-on-rails ruby redis resque

我正在使用Resque工作人员来处理队列中的工作,我有大量的工作>队列中有1M并且有一些我需要删除的作业(由于错误而添加)。使用作业创建队列并非易事,因此使用resque-web清除队列并再次添加正确的作业对我来说不是一种选择。

欣赏任何建议。谢谢!

3 个答案:

答案 0 :(得分:22)

在resque的来源(Job class)中有这样的方法,猜猜你需要的是:)

# 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)

答案 1 :(得分:20)

要从队列中删除特定作业,可以使用destroy方法。它非常容易使用, 例如,如果要删除具有类Post和id x的作业,该作业位于名为queue1的队列中 你可以这样做..

Resque::Job.destroy(queue1, Post, 'x')

如果要从队列中删除特定类型的所有作业,可以使用

Resque::Job.destroy(QueueName, ClassName) 

您可以在

找到它的文档

http://www.rubydoc.info/gems/resque/Resque%2FJob.destroy

答案 2 :(得分:1)

如果您知道传递给作业的所有参数,上述解决方案的效果很好。如果您知道传递给作业的某些参数,则以下脚本将起作用:

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