Top "Sidekiq" questions

Sidekiq is a background processing framework for Ruby.

Sidekiq worker not getting triggered

I am using Sidekiq for my background jobs: I have a worker app/workers/data_import_worker.rb class DataImportWorker …

ruby-on-rails ruby nginx passenger sidekiq
How can I password-protect my /sidekiq route (i.e. require authentication for the Sidekiq::Web tool)?

I am using sidekiq in my rails application. By Default, Sidekiq can be accessed by anybody by appending "/sidekiq" after …

ruby ruby-on-rails-3 redis rescue sidekiq
Sidekiq stop one single, running job

So I need to stop a running Job in Sidekiq (3.1.2) programmatically, not a scheduled one. I did read the API …

jobs sidekiq cancellation
Log inside Sidekiq worker

I'm trying to log the progress of my sideqik worker using tail -f log/development.log in development and heroku …

ruby-on-rails ruby sidekiq
How do I reset my sidekiq counters?

In my sidekiq dashboard, I see on the left a box with the counters Processed 168 Failed 111 Busy 0 Scheduled 0 Retries 0 Enqueued 0 …

ruby-on-rails ruby sidekiq
Sidekiq list all jobs [queued + running]

Is there a way to get a list of all the jobs currently in the queue and running? Basically, I …

ruby-on-rails ruby sidekiq
Sidekiq Rails 4.2 Use Active Job or Worker? What's the difference

This is my first processing jobs asynchronously I am implementing Sidekiq for background processing in my app. I will use …

ruby-on-rails asynchronous sidekiq whenever rails-activejob
Restarting Sidekiq

What is the correct way to restart sidekiq. It seems to cache my workers' code when I start it, so …

ruby sinatra restart sidekiq
How can I get ActiveJob to enqueue jobs in Sidekiq on Heroku when called from the app (not the console)?

I'm running Rails 4.2 on Heroku (cedar), Ruby 2.1.6 I've got Sidekiq running locally on Redis with Foreman, and in my app …

ruby-on-rails heroku sidekiq ruby-on-rails-4.2
Disable automatic retry with ActiveJob, used with Sidekiq

Is there a way to disable automatic retry with ActiveJob and Sidekiq ? I know that with Sidekiq only, we just …

ruby-on-rails sidekiq rails-activejob