Class: Kafka::OffsetManager

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

Instance Method Summary collapse

Constructor Details

#initialize(cluster:, group:, logger:, commit_interval:, commit_threshold:) ⇒ OffsetManager

Returns a new instance of OffsetManager.



3
4
5
6
7
8
9
10
11
12
13
14
15
# File 'lib/kafka/offset_manager.rb', line 3

def initialize(cluster:, group:, logger:, commit_interval:, commit_threshold:)
  @cluster = cluster
  @group = group
  @logger = logger
  @commit_interval = commit_interval
  @commit_threshold = commit_threshold

  @uncommitted_offsets = 0
  @processed_offsets = {}
  @default_offsets = {}
  @committed_offsets = nil
  @last_commit = Time.now
end

Instance Method Details

#clear_offsetsObject



67
68
69
70
71
# File 'lib/kafka/offset_manager.rb', line 67

def clear_offsets
  @uncommitted_offsets = 0
  @processed_offsets.clear
  @committed_offsets = nil
end

#commit_offsetsObject



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

def commit_offsets
  unless @processed_offsets.empty?
    pretty_offsets = @processed_offsets.flat_map {|topic, partitions|
      partitions.map {|partition, offset| "#{topic}/#{partition}:#{offset}" }
    }.join(", ")

    @logger.info "Committing offsets: #{pretty_offsets}"

    @group.commit_offsets(@processed_offsets)

    @last_commit = Time.now

    @uncommitted_offsets = 0
    @committed_offsets = nil
  end
end

#commit_offsets_if_necessaryObject



61
62
63
64
65
# File 'lib/kafka/offset_manager.rb', line 61

def commit_offsets_if_necessary
  if seconds_since_last_commit >= @commit_interval || commit_threshold_reached?
    commit_offsets
  end
end

#mark_as_processed(topic, partition, offset) ⇒ Object



21
22
23
24
25
26
# File 'lib/kafka/offset_manager.rb', line 21

def mark_as_processed(topic, partition, offset)
  @uncommitted_offsets += 1
  @processed_offsets[topic] ||= {}
  @processed_offsets[topic][partition] = offset
  @logger.debug "Marking #{topic}/#{partition}:#{offset} as committed"
end

#next_offset_for(topic, partition) ⇒ Object



28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# File 'lib/kafka/offset_manager.rb', line 28

def next_offset_for(topic, partition)
  offset = @processed_offsets.fetch(topic, {}).fetch(partition) {
    committed_offset_for(topic, partition)
  }

  # A negative offset means that no offset has been committed, so we need to
  # resolve the default offset for the topic.
  if offset < 0
    default_offset = @default_offsets.fetch(topic)
    @cluster.resolve_offset(topic, partition, default_offset)
  else
    # The next offset is the last offset plus one.
    offset + 1
  end
end

#set_default_offset(topic, default_offset) ⇒ Object



17
18
19
# File 'lib/kafka/offset_manager.rb', line 17

def set_default_offset(topic, default_offset)
  @default_offsets[topic] = default_offset
end