Skip to content

Instantly share code, notes, and snippets.

@renatodex
Created March 8, 2023 16:49
Show Gist options
  • Save renatodex/a5ad496a71d699189af1af8eed0572ba to your computer and use it in GitHub Desktop.
Save renatodex/a5ad496a71d699189af1af8eed0572ba to your computer and use it in GitHub Desktop.
Clean Sidekiq Queues and Remove/Invalidate Batches
def clean_sidekiq_and_invalidate_batches
Sidekiq::BatchSet.new.each { |batch| Sidekiq::Batch.new(batch.bid).invalidate_all }
Sidekiq::Queue.all.each(&:clear)
end
def clean_sidekiq_and_delete_batches
Sidekiq::BatchSet.new.each { |batch| Sidekiq::Batch::Status.new(batch.bid).delete }
Sidekiq::Queue.all.each(&:clear)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment