Sha256: ab935c3b34fcd17e0f85e918889c9aedb49d975947f83544124a630ca8b5c3e2

Contents?: true

Size: 1.1 KB

Versions: 1

Compression:

Stored size: 1.1 KB

Contents

module Outboxable
  class PollingPublisherWorker
    include Sidekiq::Job
    sidekiq_options queue: 'critical'

    def perform
      Outboxable.configuration.orm == :mongoid ? perform_mongoid : perform_activerecord
    end

    def perform_activerecord
      Outbox.pending.where(last_attempted_at: [..Time.zone.now, nil]).find_in_batches(batch_size: 100).each do |batch|
        batch.each do |outbox|
          # This is to prevent a job from being retried too many times. Worst-case scenario is 1 minute delay in jobs.
          Outboxable::Worker.perform_async(outbox.id)
          outbox.update(last_attempted_at: 1.minute.from_now, status: :processing, allow_publish: false)
        end
      end
    end

    def perform_mongoid
      Outbox.pending.where(last_attempted_at: [..Time.zone.now, nil]).each do |outbox|
        # This is to prevent a job from being retried too many times. Worst-case scenario is 1 minute delay in jobs.
        Outboxable::Worker.perform_async(outbox.id)
        outbox.update(last_attempted_at: 1.minute.from_now, status: :processing, allow_publish: false)
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
outboxable-1.0.0 lib/outboxable/polling_publisher_worker.rb