Skip to content

Commit 98a1c7c

Browse files
Feediver1micheleRP
andauthored
Update modules/develop/pages/consume-data/consumer-offsets.adoc
Co-authored-by: Michele Cyran <michele@redpanda.com>
1 parent a5cad45 commit 98a1c7c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/develop/pages/consume-data/consumer-offsets.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ When a consumer group works together to consume data from topics, the partitions
1616

1717
Kafka tracks the maximum offset it has consumed in each partition and can commit offsets to ensure it can resume processing from the same point in the event of a restart. Kafka allows offsets for a consumer group to be stored on a designated broker, known as the group coordinator. All consumers in the group send their offset commits and fetch requests to this group coordinator.
1818

19-
NOTE: More advanced consumers can read data from Redpanda without using a consumer group, by requesting to read a specific topic + partition + offset range. This pattern is often used by stream processing systems such as Apache Spark and Apache Flink, which have their own mechanisms for assigning work to consumers.
19+
NOTE: More advanced consumers can read data from Redpanda without using a consumer group by requesting to read a specific topic, partition, and offset range. This pattern is often used by stream processing systems such as Apache Spark and Apache Flink, which have their own mechanisms for assigning work to consumers.
2020

2121
When the group coordinator receives an OffsetCommitRequest, it appends the request to the https://kafka.apache.org/documentation/#compaction[compacted^] Kafka topic `pass:[__consumer_offsets]`.
2222
The broker sends a successful offset commit response to the consumer only after all the replicas of the offsets topic receive the offsets.

0 commit comments

Comments
 (0)