Skip to content

Commit 1b6da11

Browse files
authored
fix(kafka): Read from beginning if no committed offset (#14865)
1 parent ec95ed1 commit 1b6da11

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

‎pkg/kafka/partition/reader.go

+4
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,10 @@ func (p *Reader) start(ctx context.Context) error {
103103

104104
// We manage our commits manually, so we must fetch the last offset for our consumer group to find out where to read from.
105105
lastCommittedOffset := p.fetchLastCommittedOffset(ctx)
106+
if lastCommittedOffset == kafkaEndOffset {
107+
level.Warn(p.logger).Log("msg", "no committed offset found for partition, starting from the beginning", "partition", p.partitionID, "consumer_group", p.consumerGroup)
108+
lastCommittedOffset = kafkaStartOffset // If we haven't committed any offsets yet, we start reading from the beginning.
109+
}
106110
if lastCommittedOffset > 0 {
107111
lastCommittedOffset++ // We want to begin to read from the next offset, but only if we've previously committed an offset.
108112
}

0 commit comments

Comments
 (0)