I am a newbie to Kafka and running a simple kafka consumer/producer example as given on KafkaConsumer and KafkaProducer. When I am running consumer from terminal, consumer is re
Try to set enable.partition.eof parameter to false:
enable.partition.eof
false
props.put("enable.partition.eof", "false");
That worked for me.