Hi, I have a topic divided into 4 partitions. I have a consumer that needs to consume all messages from the topic (all messages from all 4 partitions). So to do that I have this consumer sitting by itself in its own consumer group. I'm not committing any offsets, because I want to read all messages again on every restart of the consumer.
*Question:* *Can anything be said about the order of the messages consumed by my consumer? Is there a way to enforce the same order of messages for every restart of my consumer?* Thanks! -R