Hi All - version - kafka 0.10 I'm publishing data into Kafka topic using command line, and reading the data using kafka console consumer
*Publish command ->* $KAFKA_HOME/bin/kafka-verifiable-producer.sh --topic mmtopic1 --max-messages 100 --broker-list localhost:9092,localhost:9093,localhost:9094,localhost:9095 --producer.config $KAFKA_HOME/config/producer.properties *Console Consumer :* $KAFKA10_HOME/bin/kafka-console-consumer.sh --zookeeper localhost:2161 --topic mmtopic1 --from-beginning What i see is that the Kafka consumer is not reading the data in sequence i.e. the data on console is seen, but not in order it was published. Is that expected ? what do i need to do to ensure the Kafka consumer reads the data in sequence ?