Class: Kafka::Consumer

Inherits:
Object
  • Object
show all
Defined in:
lib/kafka/consumer.rb

Overview

A client that consumes messages from a Kafka cluster in coordination with other clients.

A Consumer subscribes to one or more Kafka topics; all consumers with the same group id then agree on who should read from the individual topic partitions. When group members join or leave, the group synchronizes, making sure that all partitions are assigned to a single member, and that all members have some partitions to read from.

Example

A simple producer that simply writes the messages it consumes to the console.

require "kafka"

kafka = Kafka.new(seed_brokers: ["kafka1:9092", "kafka2:9092"])

# Create a new Consumer instance in the group `my-group`:
consumer = kafka.consumer(group_id: "my-group")

# Subscribe to a Kafka topic:
consumer.subscribe("messages")

# Loop forever, reading in messages from all topics that have been
# subscribed to.
consumer.each_message do |message|
  puts message.topic
  puts message.partition
  puts message.key
  puts message.value
  puts message.offset
end

Instance Method Summary collapse

Constructor Details

#initialize(cluster:, logger:, instrumenter:, group:, offset_manager:, session_timeout:, heartbeat:) ⇒ Consumer

Returns a new instance of Consumer.



43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# File 'lib/kafka/consumer.rb', line 43

def initialize(cluster:, logger:, instrumenter:, group:, offset_manager:, session_timeout:, heartbeat:)
  @cluster = cluster
  @logger = logger
  @instrumenter = instrumenter
  @group = group
  @offset_manager = offset_manager
  @session_timeout = session_timeout
  @heartbeat = heartbeat

  # A list of partitions that have been paused, per topic.
  @paused_partitions = {}

  # Whether or not the consumer is currently consuming messages.
  @running = false

  # The maximum number of bytes to fetch from a single partition, by topic.
  @max_bytes = {}

  # Hash containing offsets for each topic and partition that has the
  # automatically_mark_as_processed feature disabled. Offset manager is only active
  # when everything is suppose to happen automatically. Otherwise we need to keep track of the
  # offset manually in memory for all the time
  # The key structure for this equals an array with topic and partition [topic, partition]
  # The value is equal to the offset of the last message we've received
  # @note It won't be updated in case user marks message as processed, because for the case
  #   when user commits message other than last in a batch, this would make ruby-kafka refetch
  #   some already consumed messages
  @current_offsets = Hash.new { |h, k| h[k] = {} }
end

Instance Method Details

#commit_offsetsObject



337
338
339
# File 'lib/kafka/consumer.rb', line 337

def commit_offsets
  @offset_manager.commit_offsets
end

#each_batch(min_bytes: 1, max_bytes: 10485760, max_wait_time: 1, automatically_mark_as_processed: true) {|batch| ... } ⇒ nil

Fetches and enumerates the messages in the topics that the consumer group subscribes to.

Each batch of messages is yielded to the provided block. If the block returns without raising an exception, the batch will be considered successfully processed. At regular intervals the offset of the most recent successfully processed message batch in each partition will be committed to the Kafka offset store. If the consumer crashes or leaves the group, the group member that is tasked with taking over processing of these partitions will resume at the last committed offsets.

Parameters:

  • min_bytes (Integer) (defaults to: 1)

    the minimum number of bytes to read before returning messages from each broker; if max_wait_time is reached, this is ignored.

  • max_bytes (Integer) (defaults to: 10485760)

    the maximum number of bytes to read before returning messages from each broker.

  • max_wait_time (Integer, Float) (defaults to: 1)

    the maximum duration of time to wait before returning messages from each broker, in seconds.

  • automatically_mark_as_processed (Boolean) (defaults to: true)

    whether to automatically mark a batch's messages as successfully processed when the block returns without an exception. Once marked successful, the offsets of processed messages can be committed to Kafka.

Yield Parameters:

Returns:

  • (nil)


270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
# File 'lib/kafka/consumer.rb', line 270

def each_batch(min_bytes: 1, max_bytes: 10485760, max_wait_time: 1, automatically_mark_as_processed: true)
  consumer_loop do
    batches = fetch_batches(
      min_bytes: min_bytes,
      max_bytes: max_bytes,
      max_wait_time: max_wait_time,
      automatically_mark_as_processed: automatically_mark_as_processed
    )

    batches.each do |batch|
      unless batch.empty?
        @instrumenter.instrument("process_batch.consumer") do |notification|
          notification.update(
            topic: batch.topic,
            partition: batch.partition,
            offset_lag: batch.offset_lag,
            highwater_mark_offset: batch.highwater_mark_offset,
            message_count: batch.messages.count,
          )

          begin
            yield batch
            @current_offsets[batch.topic][batch.partition] = batch.last_offset
          rescue => e
            offset_range = (batch.first_offset..batch.last_offset)
            location = "#{batch.topic}/#{batch.partition} in offset range #{offset_range}"
            backtrace = e.backtrace.join("\n")

            @logger.error "Exception raised when processing #{location} -- #{e.class}: #{e}\n#{backtrace}"

            raise ProcessingError.new(batch.topic, batch.partition, offset_range)
          end
        end

        mark_message_as_processed(batch.messages.last) if automatically_mark_as_processed
      end

      @offset_manager.commit_offsets_if_necessary

      @heartbeat.send_if_necessary

      return if !@running
    end

    # We may not have received any messages, but it's still a good idea to
    # commit offsets if we've processed messages in the last set of batches.
    # This also ensures the offsets are retained if we haven't read any messages
    # since the offset retention period has elapsed.
    @offset_manager.commit_offsets_if_necessary
  end
end

#each_message(min_bytes: 1, max_bytes: 10485760, max_wait_time: 1, automatically_mark_as_processed: true) {|message| ... } ⇒ nil

Fetches and enumerates the messages in the topics that the consumer group subscribes to.

Each message is yielded to the provided block. If the block returns without raising an exception, the message will be considered successfully processed. At regular intervals the offset of the most recent successfully processed message in each partition will be committed to the Kafka offset store. If the consumer crashes or leaves the group, the group member that is tasked with taking over processing of these partitions will resume at the last committed offsets.

Parameters:

  • min_bytes (Integer) (defaults to: 1)

    the minimum number of bytes to read before returning messages from each broker; if max_wait_time is reached, this is ignored.

  • max_bytes (Integer) (defaults to: 10485760)

    the maximum number of bytes to read before returning messages from each broker.

  • max_wait_time (Integer, Float) (defaults to: 1)

    the maximum duration of time to wait before returning messages from each broker, in seconds.

  • automatically_mark_as_processed (Boolean) (defaults to: true)

    whether to automatically mark a message as successfully processed when the block returns without an exception. Once marked successful, the offsets of processed messages can be committed to Kafka.

Yield Parameters:

Returns:

  • (nil)

Raises:



195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
# File 'lib/kafka/consumer.rb', line 195

def each_message(min_bytes: 1, max_bytes: 10485760, max_wait_time: 1, automatically_mark_as_processed: true)
  consumer_loop do
    batches = fetch_batches(
      min_bytes: min_bytes,
      max_bytes: max_bytes,
      max_wait_time: max_wait_time,
      automatically_mark_as_processed: automatically_mark_as_processed
    )

    batches.each do |batch|
      batch.messages.each do |message|
        @instrumenter.instrument("process_message.consumer") do |notification|
          notification.update(
            topic: message.topic,
            partition: message.partition,
            offset: message.offset,
            offset_lag: batch.highwater_mark_offset - message.offset - 1,
            create_time: message.create_time,
            key: message.key,
            value: message.value,
          )

          begin
            yield message
            @current_offsets[message.topic][message.partition] = message.offset
          rescue => e
            location = "#{message.topic}/#{message.partition} at offset #{message.offset}"
            backtrace = e.backtrace.join("\n")
            @logger.error "Exception raised when processing #{location} -- #{e.class}: #{e}\n#{backtrace}"

            raise ProcessingError.new(message.topic, message.partition, message.offset)
          end
        end

        mark_message_as_processed(message) if automatically_mark_as_processed
        @offset_manager.commit_offsets_if_necessary

        @heartbeat.send_if_necessary

        return if !@running
      end
    end

    # We may not have received any messages, but it's still a good idea to
    # commit offsets if we've processed messages in the last set of batches.
    # This also ensures the offsets are retained if we haven't read any messages
    # since the offset retention period has elapsed.
    @offset_manager.commit_offsets_if_necessary
  end
end

#mark_message_as_processed(message) ⇒ Object



341
342
343
# File 'lib/kafka/consumer.rb', line 341

def mark_message_as_processed(message)
  @offset_manager.mark_as_processed(message.topic, message.partition, message.offset)
end

#pause(topic, partition, timeout: nil) ⇒ nil

Pause processing of a specific topic partition.

When a specific message causes the processor code to fail, it can be a good idea to simply pause the partition until the error can be resolved, allowing the rest of the partitions to continue being processed.

If the timeout argument is passed, the partition will automatically be resumed when the timeout expires.

Parameters:

  • topic (String)
  • partition (Integer)
  • timeout (Integer) (defaults to: nil)

    the number of seconds to pause the partition for, or nil if the partition should not be automatically resumed.

Returns:

  • (nil)


125
126
127
128
# File 'lib/kafka/consumer.rb', line 125

def pause(topic, partition, timeout: nil)
  @paused_partitions[topic] ||= {}
  @paused_partitions[topic][partition] = timeout && Time.now + timeout
end

#paused?(topic, partition) ⇒ Boolean

Whether the topic partition is currently paused.

Parameters:

  • topic (String)
  • partition (Integer)

Returns:

  • (Boolean)

    true if the partition is paused, false otherwise.

See Also:



147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
# File 'lib/kafka/consumer.rb', line 147

def paused?(topic, partition)
  partitions = @paused_partitions.fetch(topic, {})

  if partitions.key?(partition)
    # Users can set an optional timeout, after which the partition is
    # automatically resumed. When pausing, the timeout is translated to an
    # absolute point in time.
    timeout = partitions.fetch(partition)

    if timeout.nil?
      true
    elsif Time.now < timeout
      true
    else
      @logger.info "Automatically resuming partition #{topic}/#{partition}, pause timeout expired"
      resume(topic, partition)
      false
    end
  end
end

#resume(topic, partition) ⇒ nil

Resume processing of a topic partition.

Parameters:

  • topic (String)
  • partition (Integer)

Returns:

  • (nil)

See Also:



136
137
138
139
# File 'lib/kafka/consumer.rb', line 136

def resume(topic, partition)
  paused_partitions = @paused_partitions.fetch(topic, {})
  paused_partitions.delete(partition)
end

#seek(topic, partition, offset) ⇒ nil

Move the consumer's position in a topic partition to the specified offset.

Note that this has to be done prior to calling #each_message or #each_batch and only has an effect if the consumer is assigned the partition. Typically, you will want to do this in every consumer group member in order to make sure that the member that's assigned the partition knows where to start.

Parameters:

  • topic (String)
  • partition (Integer)
  • offset (Integer)

Returns:

  • (nil)


333
334
335
# File 'lib/kafka/consumer.rb', line 333

def seek(topic, partition, offset)
  @offset_manager.seek_to(topic, partition, offset)
end

#send_heartbeat_if_necessaryObject



345
346
347
# File 'lib/kafka/consumer.rb', line 345

def send_heartbeat_if_necessary
  @heartbeat.send_if_necessary
end

#stopnil

Stop the consumer.

The consumer will finish any in-progress work and shut down.

Returns:

  • (nil)


106
107
108
109
# File 'lib/kafka/consumer.rb', line 106

def stop
  @running = false
  @cluster.disconnect
end

#subscribe(topic, default_offset: nil, start_from_beginning: true, max_bytes_per_partition: 1048576) ⇒ nil

Subscribes the consumer to a topic.

Typically you either want to start reading messages from the very beginning of the topic's partitions or you simply want to wait for new messages to be written. In the former case, set start_from_beginning to true (the default); in the latter, set it to false.

Parameters:

  • topic (String)

    the name of the topic to subscribe to.

  • default_offset (Symbol) (defaults to: nil)

    whether to start from the beginning or the end of the topic's partitions. Deprecated.

  • start_from_beginning (Boolean) (defaults to: true)

    whether to start from the beginning of the topic or just subscribe to new messages being produced. This only applies when first consuming a topic partition – once the consumer has checkpointed its progress, it will always resume from the last checkpoint.

  • max_bytes_per_partition (Integer) (defaults to: 1048576)

    the maximum amount of data fetched from a single partition at a time.

Returns:

  • (nil)


91
92
93
94
95
96
97
98
99
# File 'lib/kafka/consumer.rb', line 91

def subscribe(topic, default_offset: nil, start_from_beginning: true, max_bytes_per_partition: 1048576)
  default_offset ||= start_from_beginning ? :earliest : :latest

  @group.subscribe(topic)
  @offset_manager.set_default_offset(topic, default_offset)
  @max_bytes[topic] = max_bytes_per_partition

  nil
end