Kafka Consumer 在 java 挂在 .hasNext

Kafka Consumer hanging at .hasNext in java

我在 java 中有一个简单的 Kafka 消费者,代码如下

    public void run() {
        ConsumerIterator<byte[], byte[]> it = m_stream.iterator();
        while (it.hasNext()&& !done){
            try {
                System.out.println("Parsing data");
                byte[] data = it.next().message();
                System.out.println("Found data: "+data);
                values.add(data); // array list
            } catch (InvalidProtocolBufferException e) {
                e.printStackTrace();
            }
        }
        done = true;
    }

当一条消息被发布时,数据被成功读取,但是当它返回检查 it.hasNext() 时,它保持挂起并且永远不会回来。

是什么阻碍了它?

m_stream是得到一个KafkaStream,如下:

Map<String, Integer> topicCountMap = new HashMap<String, Integer>();
topicCountMap.put(topic, new Integer(a_numThreads));
Map<String, List<KafkaStream<byte[], byte[]>>> consumerMap = consumer.createMessageStreams(topicCountMap);
List<KafkaStream<byte[], byte[]>> streams = consumerMap.get(topic);
executor = Executors.newFixedThreadPool(a_numThreads);
for (final KafkaStream stream : streams) {
   // m_stream is one of these streams
}

解决方案是添加 属性

"consumer.timeout.ms"

现在,当达到超时时,将抛出消费者超时异常

方法 hasNext() 正在阻塞。

您可以在 属性consumer.timeout.ms

中更改阻塞的超时时间

请注意,当超时到期时,它会抛出一个 TimeoutException

会阅读这些关于消费者的文档: https://cwiki.apache.org/confluence/display/KAFKA/Consumer+Group+Example https://cwiki.apache.org/confluence/display/KAFKA/0.8.0+SimpleConsumer+Example