didil / sidekiq-client-cli

Command line client for Sidekiq
MIT License
18 stars 18 forks source link

sidekiq-client-cli

Build Status Code Climate Coverage Status

A command line client for Sidekiq You can use this when you need to interact with Sidekiq via the command line, for example in cron jobs.

Installation

Add this line to your application's Gemfile:

gem 'sidekiq-client-cli'

And then execute:

$ bundle

Or install it yourself as:

$ gem install sidekiq-client-cli

Dependencies

Requires sidekiq >= 2.15.0

Usage

Push worker classes to Sidekiq :

$ sidekiq-client push MyWorker OtherWorker

You can specify a sidekiq config file via the -c option (if not specified the usual rails path config/initializers/sidekiq.rb is used) :

$ sidekiq-client -c mysidekiq.conf push MyWorker OtherWorker

You can also specify a specific queue to push the jobs to :

$ sidekiq-client -q my_queue push MyWorker OtherWorker

You can specify that the job should not be retried, if it fails :

$ sidekiq-client -r false push MyWorker OtherWorker

You can also specify the number of times a job should be retried, if it fails :

$ sidekiq-client -r 5 push MyWorker OtherWorker

For help :

$ sidekiq-client --help

Contributing to sidekiq-client-cli