What determines ordering guarantees in Kafka?
- A Order is guaranteed within a partition, not across partitions
- B Order is global across the topic
- C Order is never guaranteed
- D Order depends on consumer speed
Answer
Order is guaranteed within a partition, not across partitions
Choosing a partition key that groups related events, such as customer id, is how ordering is preserved where it matters.





