Hi future-me! This is just a list of snippets I might be looking for next time I suddenly have to deal with a huge list of failing Sidekiq jobs being retried over and over.
List job classes sitting in the retries list
Sidekiq::RetrySet.new.map(&:display_class).uniq
Number of jobs being retried for a specific class
Sidekiq::RetrySet.new.select { |j| j.display_class == "MyJob" }.count
Delete all jobs for a class from the retries list
Sidekiq::RetrySet.new.select { |j| j.display_class == "MyJob" }.map(&:delete)
(similarly, there’s &:kill
, &:retry
)
(similarly, there’s Sidekiq::DeadSet
, Sidekiq::ScheduledSet
)
If the jobs are RES async handlers, list the events:
Sidekiq::RetrySet.new
.select { |j…