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

228 lines
6.1 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
require 'sidekiq/util'
require 'sidekiq/fetch'
require 'sidekiq/job_logger'
require 'sidekiq/job_retry'
2015-10-07 12:42:10 -04:00
require 'thread'
2015-10-08 23:59:05 -04:00
require 'concurrent/map'
require 'concurrent/atomic/atomic_fixnum'
module Sidekiq
2012-06-13 00:55:06 -04:00
##
2015-10-09 18:33:42 -04:00
# The Processor is a standalone thread which:
#
# 1. fetches a job from Redis
# 2. executes the job
# a. instantiate the Worker
# b. run the middleware chain
# c. call #perform
#
# A Processor can exit due to shutdown (processor_stopped)
# or due to an error during job execution (processor_died)
#
# If an error occurs in the job execution, the
# Processor calls the Manager to create a new one
# to replace itself and exits.
#
class Processor
include Util
2015-10-05 13:13:00 -04:00
attr_reader :thread
2015-10-08 12:48:28 -04:00
attr_reader :job
2015-10-08 12:37:37 -04:00
def initialize(mgr)
2015-10-05 13:13:00 -04:00
@mgr = mgr
@down = false
2015-10-05 13:13:00 -04:00
@done = false
@job = nil
2015-10-09 18:33:42 -04:00
@thread = nil
2015-10-08 12:37:37 -04:00
@strategy = (mgr.options[:fetch] || Sidekiq::BasicFetch).new(mgr.options)
2016-02-01 18:59:20 -05:00
@reloader = Sidekiq.options[:reloader]
2017-06-07 13:26:18 -04:00
@logging = (mgr.options[:job_logger] || Sidekiq::JobLogger).new
@retrier = Sidekiq::JobRetry.new
2015-10-05 13:13:00 -04:00
end
def terminate(wait=false)
@done = true
2015-10-08 12:37:37 -04:00
return if !@thread
2015-10-06 15:43:01 -04:00
@thread.value if wait
end
def kill(wait=false)
2015-10-08 12:37:37 -04:00
@done = true
return if !@thread
2015-10-05 13:13:00 -04:00
# unlike the other actors, terminate does not wait
# for the thread to finish because we don't know how
# long the job will take to finish. Instead we
# provide a `kill` method to call after the shutdown
# timeout passes.
2015-10-06 15:43:01 -04:00
@thread.raise ::Sidekiq::Shutdown
2015-10-05 13:13:00 -04:00
@thread.value if wait
end
2015-10-06 15:43:01 -04:00
def start
@thread ||= safe_thread("processor", &method(:run))
end
2015-10-06 15:43:01 -04:00
private unless $TESTING
2015-10-05 13:13:00 -04:00
def run
begin
while !@done
2015-10-08 12:37:37 -04:00
process_one
2015-10-05 13:13:00 -04:00
end
2015-10-09 00:50:45 -04:00
@mgr.processor_stopped(self)
2015-10-09 18:33:42 -04:00
rescue Sidekiq::Shutdown
@mgr.processor_stopped(self)
2015-10-05 13:13:00 -04:00
rescue Exception => ex
@mgr.processor_died(self, ex)
end
end
2015-10-08 12:37:37 -04:00
def process_one
2015-10-08 12:48:28 -04:00
@job = fetch
process(@job) if @job
@job = nil
2015-10-08 12:37:37 -04:00
end
def get_one
begin
work = @strategy.retrieve_work
2015-10-08 12:48:28 -04:00
(logger.info { "Redis is online, #{Time.now - @down} sec downtime" }; @down = nil) if @down
work
2015-10-08 12:37:37 -04:00
rescue Sidekiq::Shutdown
rescue => ex
handle_fetch_exception(ex)
end
end
def fetch
j = get_one
if j && @done
j.requeue
nil
else
j
end
end
def handle_fetch_exception(ex)
if !@down
@down = Time.now
logger.error("Error fetching job: #{ex}")
2017-11-30 13:12:39 -05:00
handle_exception(ex)
end
sleep(1)
nil
end
def dispatch(job_hash, queue)
# since middleware can mutate the job hash
# we clone here so we report the original
# job structure to the Web UI
pristine = cloned(job_hash)
Sidekiq::Logging.with_job_hash_context(job_hash) do
@retrier.global(pristine, queue) do
2017-03-16 14:42:02 -04:00
@logging.call(job_hash, queue) do
stats(pristine, queue) do
# Rails 5 requires a Reloader to wrap code execution. In order to
# constantize the worker and instantiate an instance, we have to call
# the Reloader. It handles code loading, db connection management, etc.
# Effectively this block denotes a "unit of work" to Rails.
@reloader.call do
klass = constantize(job_hash['class'.freeze])
2017-03-16 14:42:02 -04:00
worker = klass.new
worker.jid = job_hash['jid'.freeze]
@retrier.local(worker, pristine, queue) do
2017-03-16 14:42:02 -04:00
yield worker
end
end
end
end
end
end
end
2015-10-06 15:43:01 -04:00
def process(work)
jobstr = work.job
queue = work.queue_name
ack = false
begin
2017-03-14 23:06:04 -04:00
# Treat malformed JSON as a special case: job goes straight to the morgue.
job_hash = nil
begin
job_hash = Sidekiq.load_json(jobstr)
rescue => ex
2017-03-14 23:06:04 -04:00
handle_exception(ex, { :context => "Invalid JSON for job", :jobstr => jobstr })
DeadSet.new.kill(jobstr)
2016-02-01 18:59:20 -05:00
ack = true
raise
end
ack = true
dispatch(job_hash, queue) do |worker|
Sidekiq.server_middleware.invoke(worker, job_hash, queue) do
execute_job(worker, cloned(job_hash['args'.freeze]))
end
end
rescue Sidekiq::Shutdown
# Had to force kill this job because it didn't finish
# within the timeout. Don't acknowledge the work since
# we didn't properly finish it.
ack = false
rescue Exception => ex
e = ex.is_a?(::Sidekiq::JobRetry::Skip) && ex.cause ? ex.cause : ex
handle_exception(e, { :context => "Job raised exception", :job => job_hash, :jobstr => jobstr })
raise e
ensure
work.acknowledge if ack
end
end
def execute_job(worker, cloned_args)
worker.perform(*cloned_args)
end
WORKER_STATE = Concurrent::Map.new
PROCESSED = Concurrent::AtomicFixnum.new
FAILURE = Concurrent::AtomicFixnum.new
def stats(job_hash, queue)
tid = Sidekiq::Util.tid
WORKER_STATE[tid] = {:queue => queue, :payload => job_hash, :run_at => Time.now.to_i }
begin
yield
2012-05-12 16:23:23 -04:00
rescue Exception
FAILURE.increment
raise
ensure
WORKER_STATE.delete(tid)
PROCESSED.increment
end
end
# Deep clone the arguments passed to the worker so that if
# the job fails, what is pushed back onto Redis hasn't
# been mutated by the worker.
def cloned(thing)
Marshal.load(Marshal.dump(thing))
end
def constantize(str)
names = str.split('::')
names.shift if names.empty? || names.first.empty?
names.inject(Object) do |constant, name|
# the false flag limits search for name to under the constant namespace
# which mimics Rails' behaviour
constant.const_defined?(name, false) ? constant.const_get(name, false) : constant.const_missing(name)
end
end
end
end