Sha256: 520a2cbdf9796fc1fb7fa169b16be39bf704e1ee576652e00eb7ee53c0f616ed
Contents?: true
Size: 1.39 KB
Versions: 4
Compression:
Stored size: 1.39 KB
Contents
# frozen_string_literal: true require "sidekiq" require "sidekiq/fetch" module Sidekiq module Throttled module Patches module BasicFetch # Retrieves job from redis. # # @return [Sidekiq::Throttled::UnitOfWork, nil] def retrieve_work work = super if work && Throttled.throttled?(work.job) Throttled.cooldown&.notify_throttled(work.queue) requeue_throttled(work) return nil end Throttled.cooldown&.notify_admitted(work.queue) if work work end private # Pushes job back to the head of the queue, so that job won't be tried # immediately after it was requeued (in most cases). # # @note This is triggered when job is throttled. So it is same operation # Sidekiq performs upon `Sidekiq::Worker.perform_async` call. # # @return [void] def requeue_throttled(work) redis { |conn| conn.lpush(work.queue, work.job) } end # Returns list of queues to try to fetch jobs from. # # @note It may return an empty array. # @param [Array<String>] queues # @return [Array<String>] def queues_cmd super - (Throttled.cooldown&.queues || []) end end end end end Sidekiq::BasicFetch.prepend(Sidekiq::Throttled::Patches::BasicFetch)
Version data entries
4 entries across 4 versions & 1 rubygems