Intermediate
Big Data & Data Engineering
Q47 / 100
What is the relationship between Kafka "partitions" and "offsets"?
Correct! Well done.
Incorrect.
The correct answer is A) Each partition is an ordered, append-only log, and an offset is the position of a record within that partition
A
Correct Answer
Each partition is an ordered, append-only log, and an offset is the position of a record within that partition
Explanation
Partitions allow Kafka to parallelize and scale a topic, and each message within a partition has a sequential offset that consumers use to track position.
Progress
47/100