2012-02-13 00:16:49 -05:00
|
|
|
trap 'INT' do
|
|
|
|
# Handle Ctrl-C in JRuby like MRI
|
|
|
|
# http://jira.codehaus.org/browse/JRUBY-4637
|
2012-05-21 14:13:20 -04:00
|
|
|
Sidekiq::CLI.instance.interrupt
|
2012-02-13 00:16:49 -05:00
|
|
|
end
|
|
|
|
|
2012-02-13 22:58:16 -05:00
|
|
|
trap 'TERM' do
|
|
|
|
# Heroku sends TERM and then waits 10 seconds for process to exit.
|
2012-05-21 14:13:20 -04:00
|
|
|
Sidekiq::CLI.instance.interrupt
|
2012-02-13 22:58:16 -05:00
|
|
|
end
|
|
|
|
|
2012-03-08 23:58:51 -05:00
|
|
|
trap 'USR1' do
|
2012-05-15 22:44:35 -04:00
|
|
|
Sidekiq.logger.info "Received USR1, no longer accepting new work"
|
2012-03-08 23:58:51 -05:00
|
|
|
mgr = Sidekiq::CLI.instance.manager
|
|
|
|
mgr.stop! if mgr
|
|
|
|
end
|
|
|
|
|
2012-05-12 16:15:06 -04:00
|
|
|
trap 'TTIN' do
|
2012-05-12 00:23:24 -04:00
|
|
|
Thread.list.each do |thread|
|
2012-07-04 03:58:46 -04:00
|
|
|
Sidekiq.logger.info "Thread TID-#{thread.object_id.to_s(36)} #{thread['label']}"
|
2012-09-24 13:39:35 -04:00
|
|
|
if thread.backtrace
|
|
|
|
Sidekiq.logger.info thread.backtrace.join("\n")
|
|
|
|
else
|
|
|
|
Sidekiq.logger.info "<no backtrace available>"
|
|
|
|
end
|
2012-05-12 00:23:24 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-06-19 11:41:41 -04:00
|
|
|
$stdout.sync = true
|
|
|
|
|
2012-02-19 16:02:32 -05:00
|
|
|
require 'yaml'
|
2012-03-08 23:58:51 -05:00
|
|
|
require 'singleton'
|
2012-01-16 19:14:47 -05:00
|
|
|
require 'optparse'
|
2012-03-31 15:45:24 -04:00
|
|
|
require 'celluloid'
|
|
|
|
|
2012-02-19 16:02:32 -05:00
|
|
|
require 'sidekiq'
|
2012-01-25 16:32:51 -05:00
|
|
|
require 'sidekiq/util'
|
2012-02-03 13:02:57 -05:00
|
|
|
require 'sidekiq/manager'
|
2012-05-25 23:21:42 -04:00
|
|
|
require 'sidekiq/scheduled'
|
2012-01-16 19:14:47 -05:00
|
|
|
|
|
|
|
module Sidekiq
|
|
|
|
class CLI
|
2012-01-22 19:01:46 -05:00
|
|
|
include Util
|
2012-03-08 23:58:51 -05:00
|
|
|
include Singleton
|
2012-01-22 19:01:46 -05:00
|
|
|
|
2012-02-14 12:00:26 -05:00
|
|
|
# Used for CLI testing
|
2012-03-18 02:04:31 -04:00
|
|
|
attr_accessor :code
|
2012-03-27 23:16:16 -04:00
|
|
|
attr_accessor :manager
|
2012-02-12 22:53:34 -05:00
|
|
|
|
2012-01-16 19:14:47 -05:00
|
|
|
def initialize
|
2012-02-12 22:53:34 -05:00
|
|
|
@code = nil
|
2012-05-21 14:13:20 -04:00
|
|
|
@interrupt_mutex = Mutex.new
|
|
|
|
@interrupted = false
|
2012-02-12 22:53:34 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def parse(args=ARGV)
|
2012-03-08 23:58:51 -05:00
|
|
|
@code = nil
|
2012-05-15 22:44:35 -04:00
|
|
|
Sidekiq.logger
|
2012-02-16 13:47:26 -05:00
|
|
|
|
|
|
|
cli = parse_options(args)
|
|
|
|
config = parse_config(cli)
|
2012-02-19 16:02:32 -05:00
|
|
|
options.merge!(config.merge(cli))
|
2012-02-16 13:47:26 -05:00
|
|
|
|
2012-05-15 22:44:35 -04:00
|
|
|
Sidekiq.logger.level = Logger::DEBUG if options[:verbose]
|
2012-08-13 23:23:14 -04:00
|
|
|
Celluloid.logger = nil unless options[:verbose]
|
2012-02-16 13:47:26 -05:00
|
|
|
|
2012-01-16 23:02:58 -05:00
|
|
|
validate!
|
2012-03-08 23:58:51 -05:00
|
|
|
write_pid
|
2012-02-09 23:32:59 -05:00
|
|
|
boot_system
|
2012-01-16 19:14:47 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def run
|
2012-09-03 14:34:07 -04:00
|
|
|
logger.info "Booting Sidekiq #{Sidekiq::VERSION} with Redis at #{redis {|x| x.client.id}}"
|
|
|
|
logger.info "Running in #{RUBY_DESCRIPTION}"
|
|
|
|
logger.info Sidekiq::LICENSE
|
|
|
|
|
2012-03-27 23:16:16 -04:00
|
|
|
@manager = Sidekiq::Manager.new(options)
|
2012-05-25 23:21:42 -04:00
|
|
|
poller = Sidekiq::Scheduled::Poller.new
|
2012-01-16 19:14:47 -05:00
|
|
|
begin
|
2012-02-14 12:00:26 -05:00
|
|
|
logger.info 'Starting processing, hit Ctrl-C to stop'
|
2012-03-27 23:16:16 -04:00
|
|
|
@manager.start!
|
2012-06-14 11:36:00 -04:00
|
|
|
poller.poll!(true)
|
2012-02-12 23:48:13 -05:00
|
|
|
sleep
|
2012-01-16 19:14:47 -05:00
|
|
|
rescue Interrupt
|
2012-02-18 00:33:17 -05:00
|
|
|
logger.info 'Shutting down'
|
2012-05-05 17:03:56 -04:00
|
|
|
poller.terminate! if poller.alive?
|
2012-03-27 23:16:16 -04:00
|
|
|
@manager.stop!(:shutdown => true, :timeout => options[:timeout])
|
|
|
|
@manager.wait(:shutdown)
|
2012-04-07 22:33:32 -04:00
|
|
|
# Explicitly exit so busy Processor threads can't block
|
|
|
|
# process shutdown.
|
2012-04-06 23:53:03 -04:00
|
|
|
exit(0)
|
2012-01-16 19:14:47 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-05-21 14:13:20 -04:00
|
|
|
def interrupt
|
|
|
|
@interrupt_mutex.synchronize do
|
|
|
|
unless @interrupted
|
|
|
|
@interrupted = true
|
|
|
|
Thread.main.raise Interrupt
|
|
|
|
end
|
|
|
|
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-19 16:02:32 -05:00
|
|
|
def options
|
|
|
|
Sidekiq.options
|
|
|
|
end
|
|
|
|
|
2012-02-09 23:32:59 -05:00
|
|
|
def detected_environment
|
2012-02-19 16:02:32 -05:00
|
|
|
options[:environment] ||= ENV['RAILS_ENV'] || ENV['RACK_ENV'] || 'development'
|
2012-02-09 23:32:59 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def boot_system
|
|
|
|
ENV['RACK_ENV'] = ENV['RAILS_ENV'] = detected_environment
|
|
|
|
|
2012-02-19 16:02:32 -05:00
|
|
|
raise ArgumentError, "#{options[:require]} does not exist" unless File.exist?(options[:require])
|
2012-02-09 23:32:59 -05:00
|
|
|
|
2012-02-19 16:02:32 -05:00
|
|
|
if File.directory?(options[:require])
|
2012-04-24 23:54:55 -04:00
|
|
|
require 'rails'
|
|
|
|
require 'sidekiq/rails'
|
2012-02-19 16:02:32 -05:00
|
|
|
require File.expand_path("#{options[:require]}/config/environment.rb")
|
2012-02-09 23:32:59 -05:00
|
|
|
::Rails.application.eager_load!
|
|
|
|
else
|
2012-02-19 16:02:32 -05:00
|
|
|
require options[:require]
|
2012-02-09 23:32:59 -05:00
|
|
|
end
|
2012-01-16 23:02:58 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def validate!
|
2012-02-19 16:02:32 -05:00
|
|
|
options[:queues] << 'default' if options[:queues].empty?
|
2012-02-07 20:22:05 -05:00
|
|
|
|
2012-02-19 16:02:32 -05:00
|
|
|
if !File.exist?(options[:require]) ||
|
|
|
|
(File.directory?(options[:require]) && !File.exist?("#{options[:require]}/config/application.rb"))
|
2012-02-14 12:00:26 -05:00
|
|
|
logger.info "=================================================================="
|
|
|
|
logger.info " Please point sidekiq to a Rails 3 application or a Ruby file "
|
|
|
|
logger.info " to load your worker classes with -r [DIR|FILE]."
|
|
|
|
logger.info "=================================================================="
|
|
|
|
logger.info @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-02-16 13:47:26 -05:00
|
|
|
opts = {}
|
2012-01-16 19:14:47 -05:00
|
|
|
|
|
|
|
@parser = OptionParser.new do |o|
|
2012-07-27 18:18:11 -04:00
|
|
|
o.on "-q", "--queue QUEUE[,WEIGHT]...", "Queues to process with optional weights" do |arg|
|
2012-08-15 14:46:43 -04:00
|
|
|
queues_and_weights = arg.scan(/([\w-]+),?(\d*)/)
|
2012-07-27 18:18:11 -04:00
|
|
|
queues_and_weights.each {|queue_and_weight| parse_queues(opts, *queue_and_weight)}
|
2012-07-31 16:58:50 -04:00
|
|
|
opts[:strict] = queues_and_weights.collect(&:last).none? {|weight| weight != ''}
|
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
|
2012-05-15 22:44:35 -04:00
|
|
|
Sidekiq.logger.level = ::Logger::DEBUG
|
2012-01-16 19:14:47 -05:00
|
|
|
end
|
|
|
|
|
2012-02-09 23:32:59 -05:00
|
|
|
o.on '-e', '--environment ENV', "Application environment" do |arg|
|
2012-02-16 13:47:26 -05:00
|
|
|
opts[:environment] = arg
|
2012-01-24 01:08:38 -05:00
|
|
|
end
|
|
|
|
|
2012-03-08 23:58:51 -05:00
|
|
|
o.on '-t', '--timeout NUM', "Shutdown timeout" do |arg|
|
|
|
|
opts[:timeout] = arg.to_i
|
|
|
|
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|
|
2012-02-16 13:47:26 -05:00
|
|
|
opts[: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|
|
2012-02-16 13:47:26 -05:00
|
|
|
opts[:concurrency] = arg.to_i
|
2012-01-16 19:14:47 -05:00
|
|
|
end
|
2012-02-15 13:56:36 -05:00
|
|
|
|
2012-02-15 21:13:32 -05:00
|
|
|
o.on '-P', '--pidfile PATH', "path to pidfile" do |arg|
|
2012-02-16 13:47:26 -05:00
|
|
|
opts[:pidfile] = arg
|
2012-02-15 13:56:36 -05:00
|
|
|
end
|
2012-02-15 21:13:32 -05:00
|
|
|
|
|
|
|
o.on '-C', '--config PATH', "path to YAML config file" do |arg|
|
2012-02-16 13:47:26 -05:00
|
|
|
opts[:config_file] = arg
|
2012-02-15 21:13:32 -05:00
|
|
|
end
|
2012-03-30 11:57:30 -04:00
|
|
|
|
|
|
|
o.on '-V', '--version', "Print version and exit" do |arg|
|
|
|
|
puts "Sidekiq #{Sidekiq::VERSION}"
|
|
|
|
die(0)
|
|
|
|
end
|
2012-01-16 19:14:47 -05:00
|
|
|
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
|
2012-02-14 12:00:26 -05:00
|
|
|
logger.info @parser
|
2012-02-12 22:53:34 -05:00
|
|
|
die 1
|
2012-01-16 19:14:47 -05:00
|
|
|
end
|
|
|
|
@parser.parse!(argv)
|
2012-02-16 13:47:26 -05:00
|
|
|
opts
|
2012-01-16 19:14:47 -05:00
|
|
|
end
|
|
|
|
|
2012-02-15 13:56:36 -05:00
|
|
|
def write_pid
|
2012-02-19 16:02:32 -05:00
|
|
|
if path = options[:pidfile]
|
2012-02-15 13:56:36 -05:00
|
|
|
File.open(path, 'w') do |f|
|
|
|
|
f.puts Process.pid
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-02-16 13:47:26 -05:00
|
|
|
def parse_config(cli)
|
|
|
|
opts = {}
|
|
|
|
if cli[:config_file] && File.exist?(cli[:config_file])
|
|
|
|
opts = YAML.load_file cli[:config_file]
|
|
|
|
queues = opts.delete(:queues) || []
|
2012-04-03 23:19:29 -04:00
|
|
|
queues.each { |name, weight| parse_queues(opts, name, weight) }
|
2012-02-15 21:13:32 -05:00
|
|
|
end
|
2012-02-16 13:47:26 -05:00
|
|
|
opts
|
2012-02-15 21:13:32 -05:00
|
|
|
end
|
|
|
|
|
2012-04-03 23:19:29 -04:00
|
|
|
def parse_queues(opts, q, weight)
|
2012-07-27 18:18:11 -04:00
|
|
|
[weight.to_i, 1].max.times do
|
2012-04-03 23:19:29 -04:00
|
|
|
(opts[:queues] ||= []) << q
|
|
|
|
end
|
2012-02-15 21:13:32 -05:00
|
|
|
end
|
2012-01-16 19:14:47 -05:00
|
|
|
end
|
|
|
|
end
|