Programmatically finding the size of the retry queue with Sidekiq

How to use Sidekiq's API for querying the state of queues

There is an API that Sidekiq provides for programmatically querying the state of the various queues under Sidekiq’s control.

If you don’t want to expose the web interface to the world then using this API is a must.

Here is some sample code for finding how many items are currently in the retry queue, if you have too many jobs constantly failing there is likely something you need to change in your worker.

retry_queue = Sidekiq::RetrySet.new
retry_queue.size

I would encourage you to read more about the API.

Recent posts View all

MacProductivity

Some Mac Tips

Some settings or tips I've learned over the years to make using your Mac an even nicer experience

Writing Git

How to speed up Rubocop

A small bit of config that could speed up your Rubocop runs