Top "Sidekiq" questions

Sidekiq is a background processing framework for Ruby.

Best way to find a job anywhere in Sidekiq

Is there an easy way to search through all of sidekiq (queues, retries, schedules, etc) for a specific job? Currently …

ruby-on-rails ruby sidekiq
How can I run an ActiveJob in Rails console for debugging?

I currently have an ActiveJob that I've created and use Sidekiq to queue it. I'm wanting to debug the job, …

ruby-on-rails sidekiq rails-console rails-activejob
How to put sidekiq into Docker in a rails application?

I am using rails, sidekiq and docker. My docker-compose.yml file sidekiq: build: . command: bundle exec sidekiq -C config/sidekiq.…

ruby-on-rails docker sidekiq
redis attempting to connect to local host in Heroku - WHY?

I have been using sidekiq/redis for quite some time with no issues to date. For some reason, today I …

ruby-on-rails mongodb heroku redis sidekiq
Perform sidekiq job synchronously

E.g. SidekiqWorker needs to be performed immediately instead of SidekiqWorker.perform_async. How to perform (execute, run) sidekiq job (…

ruby-on-rails sidekiq
Run Sidekiq as daemon on Ubuntu

How can I run sidekiq as daemon on Ubuntu? If I run bundle exec sidekiq -D I get invalid option: …

ruby-on-rails ruby daemon sidekiq
How to set retry count for Sidekiq with ActiveJob?

From the Rails API, I found ActiveJob can retry_job interval: my_job_instance.enqueue my_job_instance.enqueue wait: 5.…

sidekiq rails-activejob
How to start Sidekiq worker on Ubuntu VPS (Digitalocean)

I already setup Redis, Sidekiq and Rails app, I can access it form //url/sidekiq, but how do I start …

ruby-on-rails deployment vps sidekiq
Sidekiq retry count in job

Is there a way to get the retry count for the current job? I want the job to stop, not …

ruby jobs sidekiq
Errno::EIO: Input/output error - <STDOUT>

class FaxFetchWorker include Sidekiq::Worker sidekiq_options :retry => false def perform(job_id=0) logger.warn "perform is invoked." FaxSource.…

ruby-on-rails ruby-on-rails-3 sidekiq