A Kafka garantálja az egy partíción belüli sorrend biztosítását, de partíciók között nem — ez egy döntő fontosságú koncepció. Az egymáshoz kapcsolódó események sorrendjének biztosításához ezeket ugyanabba a partícióba irányítja (ugyanazzal a kulccsal). Az sorrend megértése fontos a helyesség szempontjából.
Partíción belüli sorrend
Kafka guarantees:
✓ ORDER WITHIN a partition → events in a partition are strictly ordered (by offset);
consumers read them in order
✗ NO order ACROSS partitions → events in different partitions have no relative order
guarantee (they're processed in parallel by different consumers)
→ this is a FUNDAMENTAL Kafka property (and a common source of misunderstanding)
