Sha256: 7e857751047c56d9701e4e9b5043b7650e99904f01f0e5176f69ad1f6b659684
Contents?: true
Size: 1.9 KB
Versions: 2
Compression:
Stored size: 1.9 KB
Contents
# encoding: UTF-8 require 'delayed_job' require 'set' module Delayed module JobGroups class Plugin < Delayed::Plugin # Delayed job callbacks will be registered in a global Delayed::Lifecycle every time a # Delayed::Worker is created. This creates problems in test runs that create # multiple workers because we register the callbacks multiple times on the same # global Lifecycle. def self.callbacks(&block) registered_lifecycles = Set.new super do |lifecycle| if registered_lifecycles.add?(lifecycle.object_id) block.call(lifecycle) end end end callbacks do |lifecycle| lifecycle.before(:error) do |worker, job| # If the job group has been cancelled then don't let the job be retried if job.in_job_group? && job_group_cancelled?(job.job_group_id) def job.max_attempts 1 end end end lifecycle.before(:failure) do |worker, job| # If a job in the job group fails, then cancel the whole job group. # Need to check that the job group is present since another # job may have concurrently cancelled it. if job.in_job_group? && job.job_group job.job_group.cancel end end lifecycle.after(:perform) do |worker, job| # Make sure we only check to see if the job group is complete # if the job succeeded if job.in_job_group? && job_completed?(job) JobGroup.check_for_completion(job.job_group_id) end end end private def self.job_group_cancelled?(job_group_id) !JobGroup.exists?(job_group_id) end def self.job_completed?(job) # Delayed job will already have marked the job for destruction # if it has completed job.destroyed? end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
delayed_job_groups_plugin-0.1.1 | lib/delayed/job_groups/plugin.rb |
delayed_job_groups_plugin-0.1.0 | lib/delayed/job_groups/plugin.rb |