1
0
Fork 0
mirror of https://github.com/mperham/sidekiq.git synced 2022-11-09 13:52:34 -05:00
mperham--sidekiq/lib/sidekiq/cli.rb

265 lines
7.1 KiB
Ruby
Raw Normal View History

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
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.
Sidekiq::CLI.instance.interrupt
2012-02-13 22:58:16 -05:00
end
trap 'USR1' do
Sidekiq.logger.info "Received USR1, no longer accepting new work"
mgr = Sidekiq::CLI.instance.manager
mgr.async.stop if mgr
end
trap 'USR2' do
if Sidekiq.options[:logfile]
Sidekiq.logger.info "Received USR2, reopening log file"
Sidekiq::Logging.initialize_logger(Sidekiq.options[:logfile])
end
end
trap 'TTIN' do
Thread.list.each do |thread|
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
end
end
2012-06-19 11:41:41 -04:00
$stdout.sync = true
require 'yaml'
require 'singleton'
2012-01-16 19:14:47 -05:00
require 'optparse'
2012-03-31 15:45:24 -04:00
require 'celluloid'
2012-10-19 16:50:59 -04:00
require 'erb'
2012-03-31 15:45:24 -04:00
require 'sidekiq'
require 'sidekiq/util'
require 'sidekiq/manager'
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
include Singleton
2012-01-22 19:01:46 -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-01-16 19:14:47 -05:00
def initialize
@code = nil
@interrupt_mutex = Mutex.new
@interrupted = false
2013-01-18 15:52:56 -05:00
@environment = ENV['RAILS_ENV'] || ENV['RACK_ENV']
end
def parse(args=ARGV)
@code = nil
cli = parse_options(args)
@environment = cli[:environment] if cli[:environment]
config = parse_config(cli)
options.merge!(config.merge(cli))
2012-12-11 06:32:22 -05:00
initialize_logger
2012-01-16 23:02:58 -05:00
validate!
write_pid
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
Sidekiq::Stats::History.cleanup
2012-03-27 23:16:16 -04:00
@manager = Sidekiq::Manager.new(options)
poller = Sidekiq::Scheduled::Poller.new
2012-01-16 19:14:47 -05:00
begin
logger.info 'Starting processing, hit Ctrl-C to stop'
@manager.async.start
poller.async.poll(true)
2012-02-12 23:48:13 -05:00
sleep
2012-01-16 19:14:47 -05:00
rescue Interrupt
logger.info 'Shutting down'
poller.async.terminate if poller.alive?
@manager.async.stop(:shutdown => true, :timeout => options[:timeout])
2012-03-27 23:16:16 -04:00
@manager.wait(:shutdown)
2012-04-07 22:33:32 -04:00
# Explicitly exit so busy Processor threads can't block
# process shutdown.
exit(0)
2012-01-16 19:14:47 -05:00
end
end
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
def die(code)
exit(code)
end
def options
Sidekiq.options
end
def boot_system
2013-01-18 15:52:56 -05:00
ENV['RACK_ENV'] = ENV['RAILS_ENV'] = @environment || 'development'
raise ArgumentError, "#{options[:require]} does not exist" unless File.exist?(options[:require])
if File.directory?(options[:require])
require 'rails'
require 'sidekiq/rails'
require File.expand_path("#{options[:require]}/config/environment.rb")
::Rails.application.eager_load!
options[:tag] ||= default_tag
else
require options[:require]
end
2012-01-16 23:02:58 -05:00
end
def default_tag
dir = ::Rails.root
name = File.basename(dir)
if name.to_i != 0 && prevdir = File.dirname(dir) # Capistrano release directory?
if File.basename(prevdir) == 'releases'
return File.basename(File.dirname(prevdir))
end
end
name
end
2012-01-16 23:02:58 -05:00
def validate!
options[:queues] << 'default' if options[:queues].empty?
if !File.exist?(options[:require]) ||
(File.directory?(options[:require]) && !File.exist?("#{options[:require]}/config/application.rb"))
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
die(1)
end
2012-01-16 23:02:58 -05:00
end
def parse_options(argv)
opts = {}
2012-01-16 19:14:47 -05:00
@parser = OptionParser.new do |o|
o.on "-q", "--queue QUEUE[,WEIGHT]...", "Queues to process with optional weights" do |arg|
queues_and_weights = arg.scan(/([\w\.-]+),?(\d*)/)
parse_queues opts, queues_and_weights
2012-01-16 19:14:47 -05:00
end
o.on "-v", "--verbose", "Print more verbose output" do |arg|
opts[:verbose] = arg
2012-01-16 19:14:47 -05:00
end
o.on '-e', '--environment ENV', "Application environment" do |arg|
opts[:environment] = arg
2012-01-24 01:08:38 -05:00
end
o.on '-t', '--timeout NUM', "Shutdown timeout" do |arg|
opts[:timeout] = Integer(arg)
end
o.on '-g', '--tag TAG', "Process tag for procline" do |arg|
opts[:tag] = arg
end
o.on '-r', '--require [PATH|DIR]', "Location of Rails application with workers or file to require" do |arg|
opts[:require] = arg
end
2013-01-06 16:01:30 -05:00
o.on '-i', '--index INT', "unique process index on this machine" do |arg|
opts[:index] = Integer(arg)
end
o.on '-c', '--concurrency INT', "processor threads to use" do |arg|
opts[:concurrency] = Integer(arg)
2012-01-16 19:14:47 -05:00
end
2012-02-15 13:56:36 -05:00
o.on '-P', '--pidfile PATH', "path to pidfile" do |arg|
opts[:pidfile] = arg
2012-02-15 13:56:36 -05:00
end
o.on '-C', '--config PATH', "path to YAML config file" do |arg|
opts[:config_file] = arg
end
2012-03-30 11:57:30 -04:00
2012-12-11 06:32:22 -05:00
o.on '-L', '--logfile PATH', "path to writable logfile" do |arg|
opts[:logfile] = arg
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
@parser.banner = "sidekiq [options]"
2012-01-16 19:14:47 -05:00
@parser.on_tail "-h", "--help", "Show help" do
logger.info @parser
die 1
2012-01-16 19:14:47 -05:00
end
@parser.parse!(argv)
opts
2012-01-16 19:14:47 -05:00
end
2012-12-11 06:32:22 -05:00
def initialize_logger
Sidekiq::Logging.initialize_logger(options[:logfile]) if options[:logfile]
2012-12-11 06:32:22 -05:00
Sidekiq.logger.level = Logger::DEBUG if options[:verbose]
Celluloid.logger = nil unless options[:verbose]
end
2012-02-15 13:56:36 -05:00
def write_pid
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
def parse_config(cli)
opts = {}
if cli[:config_file] && File.exist?(cli[:config_file])
2012-10-19 16:50:59 -04:00
opts = YAML.load(ERB.new(IO.read(cli[:config_file])).result)
2013-01-18 15:52:56 -05:00
opts = opts.merge(opts.delete(@environment)) if @environment && opts[@environment].is_a?(Hash)
parse_queues opts, opts.delete(:queues) || []
end
opts
end
def parse_queues(opts, queues_and_weights)
queues_and_weights.each {|queue_and_weight| parse_queue(opts, *queue_and_weight)}
opts[:strict] = queues_and_weights.all? {|_, weight| weight.to_s.empty? }
end
def parse_queue(opts, q, weight=nil)
[weight.to_i, 1].max.times do
2012-04-03 23:19:29 -04:00
(opts[:queues] ||= []) << q
end
end
2012-01-16 19:14:47 -05:00
end
end