2012-01-16 19:14:47 -05:00
|
|
|
require 'optparse'
|
2012-01-25 16:32:51 -05:00
|
|
|
require 'sidekiq/version'
|
|
|
|
require 'sidekiq/util'
|
2012-02-08 17:43:57 -05:00
|
|
|
require 'sidekiq/redis_connection'
|
2012-02-03 13:02:57 -05:00
|
|
|
require 'sidekiq/manager'
|
2012-01-16 19:14:47 -05:00
|
|
|
|
|
|
|
module Sidekiq
|
|
|
|
class CLI
|
2012-01-22 19:01:46 -05:00
|
|
|
include Util
|
|
|
|
|
2012-02-12 22:53:34 -05:00
|
|
|
attr_accessor :options, :code
|
|
|
|
|
2012-01-16 19:14:47 -05:00
|
|
|
def initialize
|
2012-02-12 22:53:34 -05:00
|
|
|
@code = nil
|
|
|
|
end
|
|
|
|
|
|
|
|
def parse(args=ARGV)
|
|
|
|
parse_options(args)
|
2012-01-16 23:02:58 -05:00
|
|
|
validate!
|
2012-02-09 23:32:59 -05:00
|
|
|
boot_system
|
2012-01-16 19:14:47 -05:00
|
|
|
end
|
|
|
|
|
2012-01-24 01:08:38 -05:00
|
|
|
FOREVER = 2_000_000_000
|
|
|
|
|
2012-01-16 19:14:47 -05:00
|
|
|
def run
|
2012-02-11 16:14:03 -05:00
|
|
|
Sidekiq::Manager.redis = RedisConnection.create(:url => @options[:server], :namespace => @options[:namespace])
|
|
|
|
manager = Sidekiq::Manager.new(@options)
|
2012-01-16 19:14:47 -05:00
|
|
|
begin
|
|
|
|
log 'Starting processing, hit Ctrl-C to stop'
|
2012-02-03 13:02:57 -05:00
|
|
|
manager.start!
|
2012-02-05 16:22:57 -05:00
|
|
|
# HACK need to determine how to pause main thread while
|
|
|
|
# waiting for signals.
|
2012-01-24 01:08:38 -05:00
|
|
|
sleep FOREVER
|
2012-01-16 19:14:47 -05:00
|
|
|
rescue Interrupt
|
2012-02-05 16:22:57 -05:00
|
|
|
# TODO Need clean shutdown support from Celluloid
|
|
|
|
log 'Shutting down, pausing 5 seconds to let workers finish...'
|
2012-02-03 13:02:57 -05:00
|
|
|
manager.stop!
|
|
|
|
manager.wait(:shutdown)
|
2012-01-16 19:14:47 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-01-16 19:18:36 -05:00
|
|
|
private
|
|
|
|
|
2012-02-12 22:53:34 -05:00
|
|
|
def die(code)
|
|
|
|
exit(code)
|
|
|
|
end
|
|
|
|
|
2012-02-09 23:32:59 -05:00
|
|
|
def detected_environment
|
|
|
|
@options[:environment] || ENV['RAILS_ENV'] || ENV['RACK_ENV'] || 'development'
|
|
|
|
end
|
|
|
|
|
|
|
|
def boot_system
|
|
|
|
ENV['RACK_ENV'] = ENV['RAILS_ENV'] = detected_environment
|
|
|
|
|
|
|
|
raise ArgumentError, "#{@options[:require]} does not exist" if !File.exist?(@options[:require])
|
|
|
|
|
|
|
|
if File.directory?(@options[:require])
|
|
|
|
require File.expand_path("#{@options[:require]}/config/environment.rb")
|
|
|
|
::Rails.application.eager_load!
|
|
|
|
else
|
|
|
|
require @options[:require]
|
|
|
|
end
|
2012-01-16 23:02:58 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def validate!
|
2012-02-07 20:22:05 -05:00
|
|
|
@options[:queues] << 'default' if @options[:queues].empty?
|
|
|
|
@options[:queues].shuffle!
|
|
|
|
|
2012-01-22 19:01:46 -05:00
|
|
|
$DEBUG = @options[:verbose]
|
2012-01-23 17:05:03 -05:00
|
|
|
|
2012-02-10 00:56:14 -05:00
|
|
|
if !File.exist?(@options[:require]) ||
|
|
|
|
(File.directory?(@options[:require]) && !File.exist?("#{@options[:require]}/config/application.rb"))
|
2012-02-09 23:32:59 -05:00
|
|
|
log "=================================================================="
|
|
|
|
log " Please point sidekiq to a Rails 3 application or a Ruby file "
|
2012-02-10 00:56:14 -05:00
|
|
|
log " to load your worker classes with -r [DIR|FILE]."
|
2012-02-09 23:32:59 -05:00
|
|
|
log "=================================================================="
|
2012-01-23 17:05:03 -05:00
|
|
|
log @parser
|
2012-02-12 22:53:34 -05:00
|
|
|
die(1)
|
2012-01-23 17:05:03 -05:00
|
|
|
end
|
2012-01-16 23:02:58 -05:00
|
|
|
end
|
|
|
|
|
2012-02-12 22:53:34 -05:00
|
|
|
def parse_options(argv)
|
2012-01-16 19:14:47 -05:00
|
|
|
@options = {
|
2012-01-16 23:02:58 -05:00
|
|
|
:verbose => false,
|
2012-02-07 20:22:05 -05:00
|
|
|
:queues => [],
|
2012-01-25 16:32:51 -05:00
|
|
|
:processor_count => 25,
|
2012-02-09 23:32:59 -05:00
|
|
|
:require => '.',
|
2012-02-07 20:16:40 -05:00
|
|
|
:environment => nil,
|
2012-01-16 19:14:47 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
@parser = OptionParser.new do |o|
|
2012-01-16 23:02:58 -05:00
|
|
|
o.on "-q", "--queue QUEUE,WEIGHT", "Queue to process, with optional weight" do |arg|
|
|
|
|
(q, weight) = arg.split(",")
|
2012-02-12 14:28:29 -05:00
|
|
|
(weight || 1).to_i.times do
|
2012-01-16 23:02:58 -05:00
|
|
|
@options[:queues] << q
|
|
|
|
end
|
2012-01-16 19:14:47 -05:00
|
|
|
end
|
|
|
|
|
2012-01-16 23:02:58 -05:00
|
|
|
o.on "-v", "--verbose", "Print more verbose output" do
|
|
|
|
@options[:verbose] = true
|
2012-01-16 19:14:47 -05:00
|
|
|
end
|
|
|
|
|
2012-02-08 17:43:57 -05:00
|
|
|
o.on "-n", "--namespace NAMESPACE", "namespace worker queues are under" do |arg|
|
|
|
|
@options[:namespace] = arg
|
|
|
|
end
|
|
|
|
|
2012-01-26 00:12:18 -05:00
|
|
|
o.on "-s", "--server LOCATION", "Where to find Redis" do |arg|
|
2012-01-16 19:14:47 -05:00
|
|
|
@options[:server] = arg
|
|
|
|
end
|
|
|
|
|
2012-02-09 23:32:59 -05:00
|
|
|
o.on '-e', '--environment ENV', "Application environment" do |arg|
|
2012-01-24 01:08:38 -05:00
|
|
|
@options[:environment] = arg
|
|
|
|
end
|
|
|
|
|
2012-02-09 23:32:59 -05:00
|
|
|
o.on '-r', '--require [PATH|DIR]', "Location of Rails application with workers or file to require" do |arg|
|
|
|
|
@options[:require] = arg
|
2012-01-23 17:05:03 -05:00
|
|
|
end
|
|
|
|
|
2012-01-25 16:32:51 -05:00
|
|
|
o.on '-c', '--concurrency INT', "processor threads to use" do |arg|
|
|
|
|
@options[:processor_count] = arg.to_i
|
2012-01-16 19:14:47 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-01-24 17:53:36 -05:00
|
|
|
@parser.banner = "sidekiq [options]"
|
2012-01-16 19:14:47 -05:00
|
|
|
@parser.on_tail "-h", "--help", "Show help" do
|
|
|
|
log @parser
|
2012-02-12 22:53:34 -05:00
|
|
|
die 1
|
2012-01-16 19:14:47 -05:00
|
|
|
end
|
|
|
|
@parser.parse!(argv)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|