A high-volume 311 topic must scale across workers while preserving order for each citizen request key. What Kafka mechanism provides that balance?
Select an answer to reveal the explanation.
Short Explanation
Partitions are like multiple checkout lanes: the store moves faster overall, but each lane still keeps its own line in order. Same idea for keyed civic events.
Full Explanation
Kafka partitions enable parallel produce and consume across the cluster. Ordering is guaranteed per partition, typically by routing related keys to the same partition. That design scales municipal topics without claiming total global order across all events.