我在java中有一个简单的Kafka Consumer,代码如下
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;
}
当发布消息时,数据会被成功读取,但是当它返回到检查它时,它会保持待定状态并且永远不会回来。
有什么可能拖延这个?
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
}
答案 0 :(得分:12)
解决方案是添加属性
“consumer.timeout.ms”
现在,当达到超时时,抛出ConsumerTimeoutException
答案 1 :(得分:5)
方法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