Top "Sidekiq" questions

Sidekiq is a background processing framework for Ruby.

Best way to monitor for completion of a Sidekiq job?

I'm using a Sidekiq worker to complete some requests to Facebook after a user signs-in for the first time. Typically …

ruby-on-rails ruby sidekiq
Starting Sidekiq with rails server in development environment

I am using Sidekiq for some of my background processes. Currently what I do is: start bundle exec rails s …

ruby ruby-on-rails-3.1 background-process sidekiq
How to manually run a Sidekiq job

I have an application which uses Sidekiq. The web server process will sometimes put a job on Sidekiq, but I …

ruby-on-rails-3 sidekiq
Sidekiq deploy to multiple environments

(See below for my detailed config, which is the result of Henley Chiu's answer). I've been trying to wrap my …

ruby-on-rails deployment capistrano sidekiq
Sidekiq not deallocating memory after workers have finished

I have about six Sidekiq worker which perform JSON crawling. Dependent on the endpoint's dataset size they finish between 1min …

ruby memory-management memory-leaks out-of-memory sidekiq
How does Sidekiq passes arguments to the perform method?

I have this Sidekiq worker: class DealNoteWorker include Sidekiq::Worker sidekiq_options queue: :email def perform(options = {}) if options[:type] == "…

ruby sidekiq
Sidekiq - could not obtain a database connection within 5.000 seconds

I get the following warning with Rails 4 and Sidekiq on os x on development 10:13:39 worker.1 | 2014-09-22T07:13:39.857Z 86981 TID-oug0…

ruby-on-rails postgresql concurrency sidekiq
Redis pub/sub on rails

Following the Redis Pub/Sub this works fine and i can publish messages in any class using $redis.publish 'channel', { …

ruby-on-rails ruby-on-rails-4 redis publish-subscribe sidekiq
Sidekiq + Sidetiq recurrence every 2 hours?

I can't exactly find how to set my recurrence rule to initiate the job every 2 hours. Currently I have my …

ruby-on-rails ruby sidekiq sidetiq
Can multiple sidekiq instances process the same queue

I'm not familiar with the internals of Sidekiq and am wondering if it's okay to launch several Sidekiq instances with …

ruby sidekiq