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

65 lines
1.8 KiB
Ruby
Raw Normal View History

require 'sidekiq'
require 'sidekiq/util'
require 'celluloid'
module Sidekiq
module Scheduled
POLL_INTERVAL = 15
##
# The Poller checks Redis every N seconds for messages in the retry or scheduled
# set have passed their timestamp and should be enqueued. If so, it
# just pops the message back onto its original queue so the
# workers can pick it up like any other message.
class Poller
include Celluloid
include Sidekiq::Util
SETS = %w(retry schedule)
def poll(first_time=false)
watchdog('scheduling poller thread died!') do
add_jitter if first_time
# A message's "score" in Redis is the time at which it should be processed.
# Just check Redis for the set of messages with a timestamp before now.
now = Time.now.to_f.to_s
Sidekiq.redis do |conn|
SETS.each do |sorted_set|
(messages, _) = conn.multi do
conn.zrangebyscore(sorted_set, '-inf', now)
conn.zremrangebyscore(sorted_set, '-inf', now)
end
messages.each do |message|
logger.debug { "enqueued #{sorted_set}: #{message}" }
msg = Sidekiq.load_json(message)
conn.rpush("queue:#{msg['queue']}", message)
end
end
end
2012-06-19 16:39:20 -04:00
after(poll_interval) { poll }
end
end
private
2012-06-19 16:39:20 -04:00
def poll_interval
Sidekiq.options[:poll_interval] || POLL_INTERVAL
end
def add_jitter
begin
sleep(POLL_INTERVAL * rand)
rescue Celluloid::Task::TerminatedError
# Hit Ctrl-C when Sidekiq is finished booting and we have a chance
# to get here.
end
end
end
end
end