Skip to content

Instantly share code, notes, and snippets.

@stadniklksndr
Last active February 14, 2020 13:27
Show Gist options
  • Save stadniklksndr/dee33796b6166f873bf38cb0118172c6 to your computer and use it in GitHub Desktop.
Save stadniklksndr/dee33796b6166f873bf38cb0118172c6 to your computer and use it in GitHub Desktop.
# Clear all jobs
* redis-cli flushdb
* Sidekiq.redis { |conn| conn.flushdb }
# Stats
* stats = Sidekiq::Stats.new
* stats.queues
# Clear by queue name
* queue = Sidekiq::Queue.new('queue_name')
* queue.count
* queue.clear
# Clear `retry` set
* Sidekiq::RetrySet.new.clear
# Clear `scheduled` jobs
* Sidekiq::ScheduledSet.new.clear
# Clear `processed` and `failed` jobs
* Sidekiq::Stats.new.reset
# Clear `dead` jobs
* Sidekiq::DeadSet.new.clear
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment