Class: Sidekiq::RetrySet

Inherits:
JobSet show all
Defined in:
lib/sidekiq/api.rb

Overview

Allows enumeration of retries within Sidekiq. Based on this, you can search/filter for jobs. Here’s an example where I’m selecting all jobs of a certain type and deleting them from the retry queue.

r = Sidekiq::RetrySet.new
r.select do |retri|
  retri.klass == 'Sidekiq::Extensions::DelayedClass' &&
  retri.args[0] == 'User' &&
  retri.args[1] == 'setup_new_subscriber'
end.map(&:delete)

Instance Attribute Summary

Attributes inherited from SortedSet

#name

Instance Method Summary collapse

Methods inherited from JobSet

#delete_by_jid, #delete_by_value, #each, #fetch, #find_job, #schedule

Methods inherited from SortedSet

#clear, #scan, #size

Constructor Details

#initializeRetrySet

Returns a new instance of RetrySet.



693
694
695
# File 'lib/sidekiq/api.rb', line 693

def initialize
  super "retry"
end

Instance Method Details

#kill_allObject



701
702
703
# File 'lib/sidekiq/api.rb', line 701

def kill_all
  each(&:kill) while size > 0
end

#retry_allObject



697
698
699
# File 'lib/sidekiq/api.rb', line 697

def retry_all
  each(&:retry) while size > 0
end