Module: Resque::Scheduler

Extended by:
Configuration, Locking, SignalHandling
Defined in:
lib/resque/scheduler.rb,
lib/resque/scheduler/cli.rb,
lib/resque/scheduler/env.rb,
lib/resque/scheduler/util.rb,
lib/resque/scheduler/plugin.rb,
lib/resque/scheduler/server.rb,
lib/resque/scheduler/locking.rb,
lib/resque/scheduler/version.rb,
lib/resque/scheduler/extension.rb,
lib/resque/scheduler/lock/base.rb,
lib/resque/scheduler/lock/basic.rb,
lib/resque/scheduler/configuration.rb,
lib/resque/scheduler/lock/resilient.rb,
lib/resque/scheduler/logger_builder.rb,
lib/resque/scheduler/failure_handler.rb,
lib/resque/scheduler/signal_handling.rb,
lib/resque/scheduler/delaying_extensions.rb,
lib/resque/scheduler/scheduling_extensions.rb

Defined Under Namespace

Modules: Configuration, DelayingExtensions, Extension, Lock, Locking, Plugin, SchedulingExtensions, Server, SignalHandling Classes: Cli, Env, FailureHandler, LoggerBuilder, Util

Constant Summary collapse

INTERMITTENT_ERRORS =
[
  Errno::EAGAIN, Errno::ECONNRESET, Redis::CannotConnectError, Redis::TimeoutError
].freeze
CLI_OPTIONS_ENV_MAPPING =
{
  app_name: 'APP_NAME',
  background: 'BACKGROUND',
  dynamic: 'DYNAMIC_SCHEDULE',
  env: 'RAILS_ENV',
  initializer_path: 'INITIALIZER_PATH',
  logfile: 'LOGFILE',
  logformat: 'LOGFORMAT',
  quiet: 'QUIET',
  pidfile: 'PIDFILE',
  poll_sleep_amount: 'RESQUE_SCHEDULER_INTERVAL',
  verbose: 'VERBOSE'
}.freeze
VERSION =
'4.10.2'.freeze

Class Attribute Summary collapse

Attributes included from Configuration

#app_name, #dynamic, #env, #environment, #logfile, #logformat, #poll_sleep_amount, #quiet, #verbose

Attributes included from SignalHandling

#signal_queue

Class Method Summary collapse

Methods included from Locking

master?, master_lock, release_master_lock, release_master_lock!, supports_lua?

Methods included from Configuration

configure, delayed_requeue_batch_size

Methods included from SignalHandling

handle_signals, register_signal_handlers

Class Attribute Details

.failure_handlerObject



478
479
480
# File 'lib/resque/scheduler.rb', line 478

def failure_handler
  @failure_handler ||= Resque::Scheduler::FailureHandler
end

.loggerObject



482
483
484
485
486
487
488
489
# File 'lib/resque/scheduler.rb', line 482

def logger
  @logger ||= Resque::Scheduler::LoggerBuilder.new(
    quiet: quiet,
    verbose: verbose,
    log_dev: logfile,
    format: logformat
  ).build
end

.scheduled_jobsObject (readonly)

the Rufus::Scheduler jobs that are scheduled



33
34
35
# File 'lib/resque/scheduler.rb', line 33

def scheduled_jobs
  @scheduled_jobs
end

Class Method Details

.before_shutdownObject



446
447
448
449
# File 'lib/resque/scheduler.rb', line 446

def before_shutdown
  stop_rufus_scheduler
  release_master_lock
end

.clear_schedule!Object

Stops old rufus scheduler and creates a new one. Returns the new rufus scheduler



360
361
362
363
364
365
# File 'lib/resque/scheduler.rb', line 360

def clear_schedule!
  rufus_scheduler.stop
  @rufus_scheduler = nil
  @scheduled_jobs = {}
  rufus_scheduler
end

.enqueue(config) ⇒ Object



285
286
287
288
289
# File 'lib/resque/scheduler.rb', line 285

def enqueue(config)
  enqueue_from_config(config)
rescue => e
  Resque::Scheduler.failure_handler.on_enqueue_failure(config, e)
end

.enqueue_delayed_items_for_timestamp(timestamp) ⇒ Object

Enqueues all delayed jobs for a timestamp



208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
# File 'lib/resque/scheduler.rb', line 208

def enqueue_delayed_items_for_timestamp(timestamp)
  count = 0
  batch_size = delayed_requeue_batch_size
  actual_batch_size = nil

  log "Processing delayed items for timestamp #{timestamp}, in batches of #{batch_size}"

  loop do
    handle_shutdown do
      # Continually check that it is still the master
      if am_master
        actual_batch_size = enqueue_items_in_batch_for_timestamp(timestamp,
                                                                 batch_size)
      end
    end

    count += actual_batch_size
    log "queued #{count} jobs" if actual_batch_size != -1

    # continue processing until there are no more items in this
    # timestamp. If we don't have a full batch, this is the last one.
    # This also breaks us in the event of a redis transaction failure
    # i.e. enqueue_items_in_batch_for_timestamp returned -1
    break if actual_batch_size < batch_size
  end

  log "finished queueing #{count} total jobs for timestamp #{timestamp}" if count != -1
end

.enqueue_from_config(job_config) ⇒ Object

Enqueues a job based on a config hash



298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
# File 'lib/resque/scheduler.rb', line 298

def enqueue_from_config(job_config)
  args = job_config['args'] || job_config[:args]

  klass_name = job_config['class'] || job_config[:class]
  begin
    klass = Resque::Scheduler::Util.constantize(klass_name)
  rescue NameError
    klass = klass_name
  end

  params = args.is_a?(Hash) ? [args] : Array(args)
  queue = job_config['queue'] ||
          job_config[:queue] ||
          Resque.queue_from_class(klass)
  # Support custom job classes like those that inherit from
  # Resque::JobWithStatus (resque-status)
  job_klass = job_config['custom_job_class']
  if job_klass && job_klass != 'Resque::Job'
    # The custom job class API must offer a static "scheduled" method. If
    # the custom job class can not be constantized (via a requeue call
    # from the web perhaps), fall back to enqueuing normally via
    # Resque::Job.create.
    begin
      Resque::Scheduler::Util.constantize(job_klass).scheduled(
        queue, klass_name, *params
      )
    rescue NameError
      # Note that the custom job class (job_config['custom_job_class'])
      # is the one enqueued
      Resque::Job.create(queue, job_klass, *params)
    end
  else
    # Hack to avoid havoc for people shoving stuff into queues
    # for non-existent classes (for example: running scheduler in
    # one app that schedules for another.
    if Class === klass
      Resque::Scheduler::Plugin.run_before_delayed_enqueue_hooks(
        klass, *params
      )

      # If the class is a custom job class, call self#scheduled on it.
      # This allows you to do things like Resque.enqueue_at(timestamp,
      # CustomJobClass). Otherwise, pass off to Resque.
      if klass.respond_to?(:scheduled)
        klass.scheduled(queue, klass_name, *params)
      else
        Resque.enqueue_to(queue, klass, *params)
      end
    else
      # This will not run the before_hooks in rescue, but will at least
      # queue the job.
      Resque::Job.create(queue, klass, *params)
    end
  end
end

.enqueue_items_in_batch_for_timestamp(timestamp, batch_size) ⇒ Object



241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
# File 'lib/resque/scheduler.rb', line 241

def enqueue_items_in_batch_for_timestamp(timestamp, batch_size)
  timestamp_bucket_key = timestamp_key(timestamp)

  encoded_jobs_to_requeue = Resque.redis.lrange(timestamp_bucket_key, 0, batch_size - 1)

  # Watch is used to ensure that the timestamp bucket we are operating on
  # is not altered by any other clients between the watch call and when we call exec
  # (to execute the multi block). We should error catch on the redis.exec return value
  # as that will indicate if the entire transaction was aborted or not. Though we should
  # be safe as our ltrim is inside the multi block and therefore also would have been
  # aborted. So nothing would have been queued, but also nothing lost from the bucket.
  watch_result = Resque.redis.watch(timestamp_bucket_key) do
    Resque.redis.multi do |pipeline|
      encoded_jobs_to_requeue.each do |encoded_job|
        pipeline.srem("timestamps:#{encoded_job}", timestamp_bucket_key)

        decoded_job = Resque.decode(encoded_job)
        enqueue(decoded_job)
      end

      pipeline.ltrim(timestamp_bucket_key, batch_size, -1)
    end
  end

  # Did the multi block successfully remove from this timestamp and enqueue the jobs?
  success = !watch_result.nil?

  # If this was the last batch in this timestamp bucket, clean up
  if success && encoded_jobs_to_requeue.count < batch_size
    Resque.clean_up_timestamp(timestamp_bucket_key, timestamp)
  end

  unless success
    # Our batched transaction failed in Redis due to the timestamp_bucket_key value
    # being modified while we built our multi block. We return -1 to ensure we break
    # out of the loop iterating on this timestamp so it can be re-processed via the
    # loop in handle_delayed_items.
    return -1
  end

  # will return 0 if none were left to batch
  encoded_jobs_to_requeue.count
end

.enqueue_next_item(timestamp) ⇒ Object



196
197
198
199
200
201
202
203
204
205
# File 'lib/resque/scheduler.rb', line 196

def enqueue_next_item(timestamp)
  item = Resque.next_item_for_timestamp(timestamp)

  if item
    log "queuing #{item['class']} [delayed]"
    enqueue(item)
  end

  item
end

.env_matches?(configured_env) ⇒ Boolean

Returns true if the current env is non-nil and the configured env (which is a comma-split string) includes the current env.

Returns:

  • (Boolean)


179
180
181
# File 'lib/resque/scheduler.rb', line 179

def env_matches?(configured_env)
  env && configured_env.split(/[\s,]+/).include?(env)
end

.handle_delayed_items(at_time = nil) ⇒ Object

Handles queueing delayed items at_time - Time to start scheduling items (default: now).



185
186
187
188
189
190
191
192
193
194
# File 'lib/resque/scheduler.rb', line 185

def handle_delayed_items(at_time = nil)
  timestamp = Resque.next_delayed_timestamp(at_time)
  if timestamp
    procline 'Processing Delayed Items'
    until timestamp.nil?
      enqueue_delayed_items_for_timestamp(timestamp)
      timestamp = Resque.next_delayed_timestamp(at_time)
    end
  end
end

.handle_shutdownObject



291
292
293
294
295
# File 'lib/resque/scheduler.rb', line 291

def handle_shutdown
  exit if @shutdown
  yield
  exit if @shutdown
end

.handle_signals_with_operationObject



433
434
435
436
437
438
439
440
# File 'lib/resque/scheduler.rb', line 433

def handle_signals_with_operation
  yield if block_given?
  handle_signals
  false
rescue Interrupt
  before_shutdown if @shutdown
  true
end

.load_schedule!Object

Pulls the schedule from Resque.schedule and loads it into the rufus scheduler instance



97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
# File 'lib/resque/scheduler.rb', line 97

def load_schedule!
  procline 'Loading Schedule'

  # Need to load the schedule from redis for the first time if dynamic
  Resque.reload_schedule! if dynamic

  log! 'Schedule empty! Set Resque.schedule' if Resque.schedule.empty?

  @scheduled_jobs = {}

  Resque.schedule.each do |name, config|
    load_schedule_job(name, config)
  end
  Resque.redis.del(:schedules_changed) if am_master && dynamic
  procline 'Schedules Loaded'
end

.load_schedule_job(name, config) ⇒ Object

Loads a job schedule into the Rufus::Scheduler and stores it in @scheduled_jobs



134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
# File 'lib/resque/scheduler.rb', line 134

def load_schedule_job(name, config)
  # If `rails_env` or `env` is set in the config, load jobs only if they
  # are meant to be loaded in `Resque::Scheduler.env`.  If `rails_env` or
  # `env` is missing, the job should be scheduled regardless of the value
  # of `Resque::Scheduler.env`.

  configured_env = config['rails_env'] || config['env']

  if configured_env.nil? || env_matches?(configured_env)
    log! "Scheduling #{name} "
    interval_defined = false
    interval_types = %w(cron every)
    interval_types.each do |interval_type|
      next unless !config[interval_type].nil? && !config[interval_type].empty?
      args = optionizate_interval_value(config[interval_type])
      args = [args, nil, job: true] if args.is_a?(::String)

      job = rufus_scheduler.send(interval_type, *args) do
        enqueue_recurring(name, config)
      end
      @scheduled_jobs[name] = job
      interval_defined = true
      break
    end
    unless interval_defined
      log! "no #{interval_types.join(' / ')} found for " \
           "#{config['class']} (#{name}) - skipping"
    end
  else
    log "Skipping schedule of #{name} because configured " \
        "env #{configured_env.inspect} does not match current " \
        "env #{env.inspect}"
  end
end

.log(msg) ⇒ Object



467
468
469
# File 'lib/resque/scheduler.rb', line 467

def log(msg)
  logger.debug { msg }
end

.log!(msg) ⇒ Object



459
460
461
# File 'lib/resque/scheduler.rb', line 459

def log!(msg)
  logger.info { msg }
end

.log_error(msg) ⇒ Object



463
464
465
# File 'lib/resque/scheduler.rb', line 463

def log_error(msg)
  logger.error { msg }
end

.optionizate_interval_value(value) ⇒ Object

modify interval type value to value with options if options available



115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
# File 'lib/resque/scheduler.rb', line 115

def optionizate_interval_value(value)
  args = value
  if args.is_a?(::Array)
    return args.first if args.size > 2 || !args.last.is_a?(::Hash)
    # symbolize keys of hash for options
    args[2] = args[1].reduce({}) do |m, i|
      key, value = i
      m[(key.respond_to?(:to_sym) ? key.to_sym : key) || key] = value
      m
    end

    args[2][:job] = true
    args[1] = nil
  end
  args
end

.poll_sleepObject

Sleeps and returns true



400
401
402
403
404
405
406
407
408
409
# File 'lib/resque/scheduler.rb', line 400

def poll_sleep
  handle_shutdown do
    begin
      poll_sleep_loop
    ensure
      @sleeping = false
    end
  end
  true
end

.poll_sleep_loopObject



411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
# File 'lib/resque/scheduler.rb', line 411

def poll_sleep_loop
  @sleeping = true
  if poll_sleep_amount > 0
    start = Time.now
    loop do
      elapsed_sleep = (Time.now - start)
      remaining_sleep = poll_sleep_amount - elapsed_sleep
      @do_break = false
      if remaining_sleep <= 0
        @do_break = true
      else
        @do_break = handle_signals_with_operation do
          sleep(remaining_sleep)
        end
      end
      break if @do_break
    end
  else
    handle_signals_with_operation
  end
end


85
86
87
88
89
90
91
92
93
# File 'lib/resque/scheduler.rb', line 85

def print_schedule
  if rufus_scheduler
    log! "Scheduling Info\tLast Run"
    scheduler_jobs = rufus_scheduler.jobs
    scheduler_jobs.each do |_k, v|
      log! "#{v.t}\t#{v.last}\t"
    end
  end
end

.procline(string) ⇒ Object



471
472
473
474
475
476
# File 'lib/resque/scheduler.rb', line 471

def procline(string)
  log! string
  argv0 = build_procline(string)
  log "Setting procline #{argv0.inspect}"
  $0 = argv0
end

.rails_env_matches?(config) ⇒ Boolean

Returns true if the given schedule config hash matches the current env

Returns:

  • (Boolean)


170
171
172
173
174
175
# File 'lib/resque/scheduler.rb', line 170

def rails_env_matches?(config)
  warn '`Resque::Scheduler.rails_env_matches?` is deprecated. ' \
       'Please use `Resque::Scheduler.env_matches?` instead.'
  config['rails_env'] && env &&
    config['rails_env'].split(/[\s,]+/).include?(env)
end

.reload_schedule!Object



367
368
369
370
371
# File 'lib/resque/scheduler.rb', line 367

def reload_schedule!
  procline 'Reloading Schedule'
  clear_schedule!
  load_schedule!
end

.rufus_schedulerObject



354
355
356
# File 'lib/resque/scheduler.rb', line 354

def rufus_scheduler
  @rufus_scheduler ||= Rufus::Scheduler.new
end

.runObject

Schedule all jobs and continually look for delayed jobs (never returns)



39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# File 'lib/resque/scheduler.rb', line 39

def run
  procline 'Starting'

  # trap signals
  register_signal_handlers

  # Quote from the resque/worker.
  # Fix buffering so we can `rake resque:scheduler > scheduler.log` and
  # get output from the child in there.
  $stdout.sync = true
  $stderr.sync = true

  was_master = nil

  begin
    @th = Thread.current

    # Now start the scheduling part of the loop.
    loop do
      begin
        # Check on changes to master/child
        @am_master = master?
        if am_master != was_master
          procline am_master ? 'Master scheduler' : 'Child scheduler'

          # Load schedule because changed
          reload_schedule!
        end

        if am_master
          handle_delayed_items
          update_schedule if dynamic
        end
        was_master = am_master
      rescue *INTERMITTENT_ERRORS => e
        log! e.message
        release_master_lock
      end
      poll_sleep
    end

  rescue Interrupt
    log 'Exiting'
  end
end

.shutdownObject

Sets the shutdown flag, clean schedules and exits if sleeping



452
453
454
455
456
457
# File 'lib/resque/scheduler.rb', line 452

def shutdown
  return if @shutdown
  @shutdown = true
  log!('Shutting down')
  @th.raise Interrupt if @sleeping
end

.stop_rufus_schedulerObject



442
443
444
# File 'lib/resque/scheduler.rb', line 442

def stop_rufus_scheduler
  rufus_scheduler.shutdown(:wait)
end

.timestamp_key(timestamp) ⇒ Object



237
238
239
# File 'lib/resque/scheduler.rb', line 237

def timestamp_key(timestamp)
  "delayed:#{timestamp.to_i}"
end

.unschedule_job(name) ⇒ Object



391
392
393
394
395
396
397
# File 'lib/resque/scheduler.rb', line 391

def unschedule_job(name)
  if scheduled_jobs[name]
    log "Removing schedule #{name}"
    scheduled_jobs[name].unschedule
    @scheduled_jobs.delete(name)
  end
end

.update_scheduleObject



373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
# File 'lib/resque/scheduler.rb', line 373

def update_schedule
  if Resque.redis.scard(:schedules_changed) > 0
    procline 'Updating schedule'
    loop do
      schedule_name = Resque.redis.spop(:schedules_changed)
      break unless schedule_name
      Resque.reload_schedule!
      if Resque.schedule.keys.include?(schedule_name)
        unschedule_job(schedule_name)
        load_schedule_job(schedule_name, Resque.schedule[schedule_name])
      else
        unschedule_job(schedule_name)
      end
    end
    procline 'Schedules Loaded'
  end
end