Confluent
CCDAK · Question #198
Which statement describes the storage location for a sink connectors offsets?
The correct answer is A. The '__consumer_offsets' topic, like any other consumer. A sink connector's offsets are stored in the __consumer_offsets topic, just like other Kafka consumers, enabling the connector to track which records have been processed.
Developing with Kafka Connect
Question
Which statement describes the storage location for a sink connectors offsets?
Options
- AThe '__consumer_offsets' topic, like any other consumer
- BThe topic specified in the 'offsets.storage topic' configuration parameter
- CIn a file specified by the 'offset.storage.file.filename' configuration parameter
- DIn memory which is then periodically flushed to a RocksDB instance
How the community answered
(41 responses)- A93% (38)
- B5% (2)
- D2% (1)
Explanation
A sink connector's offsets are stored in the __consumer_offsets topic, just like other Kafka consumers, enabling the connector to track which records have been processed.
Topics
#sink connector offsets#__consumer_offsets#offset storage#Kafka Connect
Community Discussion
No community discussion yet for this question.