Sha256: 36b762b0a2a856bf1de553e07b97983e83465ce2495c2383b7f1316a9e610886

Contents?: true

Size: 1.71 KB

Versions: 9

Compression:

Stored size: 1.71 KB

Contents

# frozen_string_literal: true

# This Karafka component is a Pro component.
# All of the commercial components are present in the lib/karafka/pro directory of this
# repository and their usage requires commercial license agreement.
#
# Karafka has also commercial-friendly license, commercial support and commercial components.
#
# By sending a pull request to the pro components, you are agreeing to transfer the copyright of
# your code to Maciej Mensfeld.

module Karafka
  module Pro
    module ActiveJob
      # Pro ActiveJob consumer that is suppose to handle long-running jobs as well as short
      # running jobs
      #
      # When in LRJ, it will pause a given partition forever and will resume its processing only
      # when all the jobs are done processing.
      #
      # It contains slightly better revocation warranties than the regular blocking consumer as
      # it can stop processing batch of jobs in the middle after the revocation.
      class Consumer < Karafka::Pro::BaseConsumer
        # Runs ActiveJob jobs processing and handles lrj if needed
        def consume
          messages.each do |message|
            # If for any reason we've lost this partition, not worth iterating over new messages
            # as they are no longer ours
            break if revoked?
            break if Karafka::App.stopping?

            ::ActiveJob::Base.execute(
              ::ActiveSupport::JSON.decode(message.raw_payload)
            )

            # We cannot mark jobs as done after each if there are virtual partitions. Otherwise
            # this could create random markings
            next if topic.virtual_partitions?

            mark_as_consumed(message)
          end
        end
      end
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
karafka-2.0.15 lib/karafka/pro/active_job/consumer.rb
karafka-2.0.14 lib/karafka/pro/active_job/consumer.rb
karafka-2.0.13 lib/karafka/pro/active_job/consumer.rb
karafka-2.0.12 lib/karafka/pro/active_job/consumer.rb
karafka-2.0.11 lib/karafka/pro/active_job/consumer.rb
karafka-2.0.10 lib/karafka/pro/active_job/consumer.rb
karafka-2.0.9 lib/karafka/pro/active_job/consumer.rb
karafka-2.0.8 lib/karafka/pro/active_job/consumer.rb
karafka-2.0.7 lib/karafka/pro/active_job/consumer.rb