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/launcher.rb

174 lines
4.6 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
require 'sidekiq/manager'
2013-09-21 23:17:37 -04:00
require 'sidekiq/fetch'
require 'sidekiq/scheduled'
module Sidekiq
# The Launcher is a very simple Actor whose job is to
# start, monitor and stop the core Actors in Sidekiq.
# If any of these actors die, the Sidekiq process exits
# immediately.
class Launcher
include Util
2015-10-06 15:43:01 -04:00
attr_accessor :manager, :poller, :fetcher
STATS_TTL = 5*365*24*60*60
def initialize(options)
2015-10-08 12:37:37 -04:00
@manager = Sidekiq::Manager.new(options)
2015-10-06 15:43:01 -04:00
@poller = Sidekiq::Scheduled::Poller.new
@done = false
@options = options
end
2015-10-06 15:43:01 -04:00
def run
@thread = safe_thread("heartbeat", &method(:start_heartbeat))
@poller.start
@manager.start
end
2015-10-06 15:43:01 -04:00
# Stops this instance from processing any more jobs,
#
def quiet
@done = true
2015-10-06 15:43:01 -04:00
@manager.quiet
@poller.terminate
end
2015-10-06 15:43:01 -04:00
# Shuts down the process. This method does not
# return until all work is complete and cleaned up.
# It can take up to the timeout to complete.
def stop
deadline = ::Process.clock_gettime(::Process::CLOCK_MONOTONIC) + @options[:timeout]
@done = true
2015-10-06 15:43:01 -04:00
@manager.quiet
@poller.terminate
@manager.stop(deadline)
# Requeue everything in case there was a worker who grabbed work while stopped
# This call is a no-op in Sidekiq but necessary for Sidekiq Pro.
strategy = (@options[:fetch] || Sidekiq::BasicFetch)
strategy.bulk_requeue([], @options)
2015-10-06 15:43:01 -04:00
2015-10-06 17:45:10 -04:00
clear_heartbeat
end
def stopping?
@done
end
2015-10-06 17:05:46 -04:00
private unless $TESTING
2015-10-06 15:43:01 -04:00
def heartbeat
results = Sidekiq::CLI::PROCTITLES.map {|x| x.(self, to_data) }
2015-10-06 17:05:46 -04:00
results.compact!
$0 = results.join(' ')
end
def
key = identity
fails = procd = 0
2015-10-06 15:43:01 -04:00
begin
fails = Processor::FAILURE.reset
procd = Processor::PROCESSED.reset
curstate = Processor::WORKER_STATE.dup
workers_key = "#{key}:workers"
nowdate = Time.now.utc.strftime("%Y-%m-%d")
Sidekiq.redis do |conn|
conn.multi do
conn.incrby("stat:processed", procd)
conn.incrby("stat:processed:#{nowdate}", procd)
conn.expire("stat:processed:#{nowdate}", STATS_TTL)
conn.incrby("stat:failed", fails)
conn.incrby("stat:failed:#{nowdate}", fails)
conn.expire("stat:failed:#{nowdate}", STATS_TTL)
conn.del(workers_key)
curstate.each_pair do |tid, hash|
conn.hset(workers_key, tid, Sidekiq.dump_json(hash))
end
2016-05-04 15:43:15 -04:00
conn.expire(workers_key, 60)
end
end
fails = procd = 0
_, exists, _, _, msg = Sidekiq.redis do |conn|
conn.multi do
2015-10-06 15:43:01 -04:00
conn.sadd('processes', key)
conn.exists(key)
conn.hmset(key, 'info', to_json, 'busy', curstate.size, 'beat', Time.now.to_f, 'quiet', @done)
2015-10-06 15:43:01 -04:00
conn.expire(key, 60)
conn.rpop("#{key}-signals")
end
end
# first heartbeat or recovering from an outage and need to reestablish our heartbeat
fire_event(:heartbeat) if !exists
2015-10-06 15:43:01 -04:00
return unless msg
::Process.kill(msg, $$)
2015-10-06 15:43:01 -04:00
rescue => e
# ignore all redis/network issues
logger.error("heartbeat: #{e.message}")
# don't lose the counts if there was a network issue
Processor::PROCESSED.incr(procd)
Processor::FAILURE.incr(fails)
2015-10-06 15:43:01 -04:00
end
end
def start_heartbeat
while true
heartbeat
2015-10-06 17:05:46 -04:00
sleep 5
end
2015-10-06 17:45:10 -04:00
Sidekiq.logger.info("Heartbeat stopping...")
end
def to_data
@data ||= begin
{
'hostname' => hostname,
'started_at' => Time.now.to_f,
'pid' => $$,
'tag' => @options[:tag] || '',
'concurrency' => @options[:concurrency],
'queues' => @options[:queues].uniq,
'labels' => @options[:labels],
'identity' => identity,
}
end
end
def to_json
@json ||= begin
# this data changes infrequently so dump it to a string
# now so we don't need to dump it every heartbeat.
Sidekiq.dump_json(to_data)
end
end
2015-10-06 17:45:10 -04:00
def clear_heartbeat
# Remove record from Redis since we are shutting down.
# Note we don't stop the heartbeat thread; if the process
# doesn't actually exit, it'll reappear in the Web UI.
Sidekiq.redis do |conn|
2014-06-06 11:37:23 -04:00
conn.pipelined do
conn.srem('processes', identity)
conn.del("#{identity}:workers")
end
end
rescue
# best effort, ignore network errors
end
end
end