After installing Kafka I did the following createTopic --partitions 10 -replication 1 --name mytopic
I started producer using bin/kafka-producer-shell I opened two consumers in the same group using bin/kafka-consumer-shell In older versions this test used to result in the messages being sent by the producer round robin-ing between the two consumers. However I noticed all the messages were going to one consumer until I killed it then all the messages went to the other. I opened another producer and still all messages went to the same consumer. Is this just something new about the shell scripts/ or just a bug in the 0.8.0 version? Tx