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

120 lines
3.3 KiB
Ruby
Raw Normal View History

require 'sidekiq/util'
require 'sidekiq/actor'
require 'sidekiq/middleware/server/active_record'
require 'sidekiq/middleware/server/retry_jobs'
2012-02-25 16:43:53 -05:00
require 'sidekiq/middleware/server/logging'
module Sidekiq
2012-06-13 00:55:06 -04:00
##
# The Processor receives a message from the Manager and actually
# processes it. It instantiates the worker, runs the middleware
# chain and then calls Sidekiq::Worker#perform.
class Processor
include Util
include Actor
def self.default_middleware
Middleware::Chain.new do |m|
2012-02-25 16:43:53 -05:00
m.add Middleware::Server::Logging
2012-03-18 02:04:31 -04:00
m.add Middleware::Server::RetryJobs
m.add Middleware::Server::ActiveRecord
end
end
# store the actual working thread so we
# can later kill if it necessary during
# hard shutdown.
attr_accessor :actual_work_thread
def initialize(boss)
@boss = boss
end
def process(work)
msgstr = work.message
queue = work.queue_name
2012-09-13 12:16:24 -04:00
defer do
@actual_work_thread = Thread.current
2012-09-13 12:16:24 -04:00
begin
msg = Sidekiq.load_json(msgstr)
klass = msg['class'].constantize
2012-09-13 12:16:24 -04:00
worker = klass.new
worker.jid = msg['jid']
2012-09-13 12:16:24 -04:00
stats(worker, msg, queue) do
Sidekiq.server_middleware.invoke(worker, msg, queue) do
worker.perform(*cloned(msg['args']))
end
2012-08-16 21:12:25 -04:00
end
rescue Sidekiq::Shutdown
# Had to force kill this job because it didn't finish
# within the timeout.
2012-12-19 12:38:47 -05:00
rescue Exception => ex
handle_exception(ex, msg || { :message => msgstr })
2012-09-13 12:16:24 -04:00
raise
ensure
work.acknowledge
end
end
@boss.async.processor_done(current_actor)
end
# See http://github.com/tarcieri/celluloid/issues/22
def inspect
"#<Processor #{to_s}>"
end
2013-03-27 01:55:07 -04:00
private
def identity
@str ||= "#{hostname}:#{process_id}-#{Thread.current.object_id}:default"
end
def stats(worker, msg, queue)
redis do |conn|
conn.multi do
2013-03-27 01:55:07 -04:00
conn.sadd('workers', identity)
conn.setex("worker:#{identity}:started", EXPIRY, Time.now.to_s)
2012-09-16 10:27:49 -04:00
hash = {:queue => queue, :payload => msg, :run_at => Time.now.to_i }
2013-03-27 01:55:07 -04:00
conn.setex("worker:#{identity}", EXPIRY, Sidekiq.dump_json(hash))
end
end
begin
yield
2012-05-12 16:23:23 -04:00
rescue Exception
redis do |conn|
conn.multi do
conn.incrby("stat:failed", 1)
2012-12-05 20:35:49 -05:00
conn.incrby("stat:failed:#{Time.now.utc.to_date}", 1)
end
end
raise
ensure
redis do |conn|
conn.multi do
2013-03-27 01:55:07 -04:00
conn.srem("workers", identity)
conn.del("worker:#{identity}")
conn.del("worker:#{identity}:started")
conn.incrby("stat:processed", 1)
2012-12-05 20:35:49 -05:00
conn.incrby("stat:processed:#{Time.now.utc.to_date}", 1)
end
end
end
end
2012-08-05 23:53:59 -04:00
# Singleton classes are not clonable.
SINGLETON_CLASSES = [ NilClass, TrueClass, FalseClass, Symbol, Fixnum, Float, Bignum ].freeze
2012-08-05 23:53:59 -04:00
# Clone the arguments passed to the worker so that if
# the message fails, what is pushed back onto Redis hasn't
# been mutated by the worker.
def cloned(ary)
ary.map do |val|
SINGLETON_CLASSES.include?(val.class) ? val : val.clone
end
end
end
end