Sidekiq: Ensure all jobs on the queue are unique

前端 未结 4 771
醉话见心
醉话见心 2020-12-13 22:24

I have some update triggers which push jobs onto the Sidekiq queue. So in some cases, there can be multiple jobs to process the same object.

There are a couple of un

4条回答
  •  余生分开走
    2020-12-13 23:31

    My suggestion is to search for prior scheduled jobs based on some select criteria and delete, before scheduling a new one. This has been useful for me when i want a single scheduled job for a particular Object, and/or one of its methods.

    Some example methods in this context:

     find_jobs_for_object_by_method(klass, method)
    
      jobs = Sidekiq::ScheduledSet.new
    
      jobs.select { |job|
        job.klass == 'Sidekiq::Extensions::DelayedClass' &&
            ((job_klass, job_method, args) = YAML.load(job.args[0])) &&
            job_klass == klass &&
            job_method == method
      }
    
    end
    
    ##
    # delete job(s) specific to a particular class,method,particular record
    # will only remove djs on an object for that method
    #
    def self.delete_jobs_for_object_by_method(klass, method, id)
    
      jobs = Sidekiq::ScheduledSet.new
      jobs.select do |job|
        job.klass == 'Sidekiq::Extensions::DelayedClass' &&
            ((job_klass, job_method, args) = YAML.load(job.args[0])) &&
            job_klass == klass &&
            job_method == method  &&
            args[0] == id
      end.map(&:delete)
    
    end
    
    ##
    # delete job(s) specific to a particular class and particular record
    # will remove any djs on that Object
    #
    def self.delete_jobs_for_object(klass, id)
    
      jobs = Sidekiq::ScheduledSet.new
      jobs.select do |job|
        job.klass == 'Sidekiq::Extensions::DelayedClass' &&
            ((job_klass, job_method, args) = YAML.load(job.args[0])) &&
            job_klass == klass &&
            args[0] == id
      end.map(&:delete)
    
    end
    

提交回复
热议问题