Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Kafka Consumer's poll() method gets blocked

I'm new to Kafka 0.9 and testing some features I realized a strange behaviour in the Java implemented Consumer (KafkaConsumer).

The Kafka broker is located in an Ambari external machine.

Even thou I could implement a Producer and start sending messages to the external broker, I have no clue why, when the consumer tries to read the events (poll), it gets stuck.

I know the producer is working well, since I do can consume messages through the console consumer (which is working locally on ambari). But when I execute the Java Consumer, nothing happens, just gets stuck. Debugging the code I could see that it gets blocked at the poll() line:

    ConsumerRecords<String, String> records = consumer.poll(100);

The timeout does nothing, by the way. Doesn't matter if you put 0, 100 or 1000 ms, the consumer gets blocked in this line and does not timeout nor throw exceptions.

I tried all kind of alternative properties, such as advertised.host.name, advertised.listener,... and so on, with zero luck.

Any help would be highly appreciated. Thanks in advance!

like image 778
aran Avatar asked Jun 07 '16 14:06

aran


1 Answers

The reason might be the machine where your consumer code is running is unable to connect to zookeeper. Try running the same consumer code on the machine where your Kafka is installed (i tried this and worked for me). I also solved the problem by mentioning the below properties in the server.properties file:

advertised.host.name="ip address which you want to expose"

// In my case, it is the public IP of the EC2 machine, I have kafka and zookeeper installed on the same EC2 machine.

advertised.port=9092

Regarding the statement:

ConsumerRecords<String, String> records = consumer.poll(100);

The above statement doesn't mean the consumer will timeout after 100 ms; rather, it is the polling period. Whatever data it captures in 100 ms is read into records collection.

like image 189
sudarshan kakumanu Avatar answered Sep 28 '22 07:09

sudarshan kakumanu