Class: Kafka::ConsumerGroup

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(cluster:, logger:, group_id:, session_timeout:, retention_time:, instrumenter:) ⇒ ConsumerGroup

Returns a new instance of ConsumerGroup.



10
11
12
13
14
15
16
17
18
19
20
21
22
23
# File 'lib/kafka/consumer_group.rb', line 10

def initialize(cluster:, logger:, group_id:, session_timeout:, retention_time:, instrumenter:)
  @cluster = cluster
  @logger = logger
  @group_id = group_id
  @session_timeout = session_timeout
  @instrumenter = instrumenter
  @member_id = ""
  @generation_id = nil
  @members = {}
  @topics = Set.new
  @assigned_partitions = {}
  @assignment_strategy = RoundRobinAssignmentStrategy.new(cluster: @cluster)
  @retention_time = retention_time
end

Instance Attribute Details

#assigned_partitionsObject (readonly)

Returns the value of attribute assigned_partitions.



8
9
10
# File 'lib/kafka/consumer_group.rb', line 8

def assigned_partitions
  @assigned_partitions
end

#generation_idObject (readonly)

Returns the value of attribute generation_id.



8
9
10
# File 'lib/kafka/consumer_group.rb', line 8

def generation_id
  @generation_id
end

#group_idObject (readonly)

Returns the value of attribute group_id.



8
9
10
# File 'lib/kafka/consumer_group.rb', line 8

def group_id
  @group_id
end

Instance Method Details

#assigned_to?(topic, partition) ⇒ Boolean

Returns:

  • (Boolean)


34
35
36
# File 'lib/kafka/consumer_group.rb', line 34

def assigned_to?(topic, partition)
  subscribed_partitions.fetch(topic, []).include?(partition)
end

#commit_offsets(offsets) ⇒ Object



81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# File 'lib/kafka/consumer_group.rb', line 81

def commit_offsets(offsets)
  response = coordinator.commit_offsets(
    group_id: @group_id,
    member_id: @member_id,
    generation_id: @generation_id,
    offsets: offsets,
    retention_time: @retention_time
  )

  response.topics.each do |topic, partitions|
    partitions.each do |partition, error_code|
      Protocol.handle_error(error_code)
    end
  end
rescue Kafka::Error => e
  @logger.error "Error committing offsets: #{e}"
  raise OffsetCommitError, e
end

#fetch_offsetsObject



74
75
76
77
78
79
# File 'lib/kafka/consumer_group.rb', line 74

def fetch_offsets
  coordinator.fetch_offsets(
    group_id: @group_id,
    topics: @assigned_partitions,
  )
end

#heartbeatObject



100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
# File 'lib/kafka/consumer_group.rb', line 100

def heartbeat
  @logger.debug "Sending heartbeat..."

  @instrumenter.instrument('heartbeat.consumer',
                           group_id: @group_id,
                           topic_partitions: @assigned_partitions) do

    response = coordinator.heartbeat(
      group_id: @group_id,
      generation_id: @generation_id,
      member_id: @member_id,
    )

    Protocol.handle_error(response.error_code)
  end
rescue ConnectionError, UnknownMemberId, RebalanceInProgress, IllegalGeneration => e
  @logger.error "Error sending heartbeat: #{e}"
  raise HeartbeatError, e
rescue NotCoordinatorForGroup
  @logger.error "Failed to find coordinator for group `#{@group_id}`; retrying..."
  sleep 1
  @coordinator = nil
  retry
end

#joinObject



42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# File 'lib/kafka/consumer_group.rb', line 42

def join
  if @topics.empty?
    raise Kafka::Error, "Cannot join group without at least one topic subscription"
  end

  join_group
  synchronize
rescue NotCoordinatorForGroup
  @logger.error "Failed to find coordinator for group `#{@group_id}`; retrying..."
  sleep 1
  @coordinator = nil
  retry
rescue ConnectionError
  @logger.error "Connection error while trying to join group `#{@group_id}`; retrying..."
  sleep 1
  @cluster.mark_as_stale!
  @coordinator = nil
  retry
end

#leaveObject



62
63
64
65
66
67
68
69
70
71
72
# File 'lib/kafka/consumer_group.rb', line 62

def leave
  @logger.info "Leaving group `#{@group_id}`"

  # Having a generation id indicates that we're a member of the group.
  @generation_id = nil

  @instrumenter.instrument("leave_group.consumer", group_id: @group_id) do
    coordinator.leave_group(group_id: @group_id, member_id: @member_id)
  end
rescue ConnectionError
end

#member?Boolean

Returns:

  • (Boolean)


38
39
40
# File 'lib/kafka/consumer_group.rb', line 38

def member?
  !@generation_id.nil?
end

#subscribe(topic) ⇒ Object



25
26
27
28
# File 'lib/kafka/consumer_group.rb', line 25

def subscribe(topic)
  @topics.add(topic)
  @cluster.add_target_topics([topic])
end

#subscribed_partitionsObject



30
31
32
# File 'lib/kafka/consumer_group.rb', line 30

def subscribed_partitions
  @assigned_partitions.select { |topic, _| @topics.include?(topic) }
end