Class: Kafka::Partitioner

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

Overview

Assigns partitions to messages.

Class Method Summary collapse

Class Method Details

.partition_for_key(partition_count, message) ⇒ Integer

Assigns a partition number based on a partition key. If no explicit partition key is provided, the message key will be used instead.

If the key is nil, then a random partition is selected. Otherwise, a digest of the key is used to deterministically find a partition. As long as the number of partitions doesn't change, the same key will always be assigned to the same partition.

Parameters:

  • partition_count (Integer)

    the number of partitions in the topic.

  • message (Kafka::PendingMessage)

    the message that should be assigned a partition.

Returns:

  • (Integer)

    the partition number.

Raises:

  • (ArgumentError)


20
21
22
23
24
25
26
27
28
29
30
31
# File 'lib/kafka/partitioner.rb', line 20

def self.partition_for_key(partition_count, message)
  raise ArgumentError if partition_count == 0

  # If no explicit partition key is specified we use the message key instead.
  key = message.partition_key || message.key

  if key.nil?
    rand(partition_count)
  else
    Zlib.crc32(key) % partition_count
  end
end