Hey Winstein, 1. You can’t modify events after they are written. They are immutable.
2. Consumers always see messages in order. Note this guarantee is per partition. That is, the consumer is guaranteed to read messages in order for a given partition. There isn’t a guarantee across partitions. Andrew Sent from my iPhone > On Jan 7, 2024, at 9:36 AM, Winstein Martins <sriwinst...@gmail.com> wrote: > > Hello everyone, I have two questions about Kafka's operation. > > 1. Can I modify events after they are written to Kafka, or are they > immutable? > 2. Do consumers always receive messages in the order they were sent by > Kafka? > > Thank you in advance!