我编写了一个高级 Kafka 消费者作为 Java 应用程序的一部分。
所以核心代码是这样的:
public void start() {
ConsumerConnector consumerConnector = conf.getConsumerConnector();
String topic = conf.getTopic();
int numOfThereads = conf.getNumOfThreads();
Map<String, Integer> topicCountMap = ImmutableMap.of(topic, numOfThereads);
Map<String, List<KafkaStream<Message>>> topicMessageStreams = consumerConnector.createMessageStreams(topicCountMap);
List<KafkaStream<Message>> streams = topicMessageStreams.get(topic);
// create 4 threads to consume from each of the partitions
executor = Executors.newFixedThreadPool(numOfThereads);
// consume the messages in the threads
for (final KafkaStream<Message> stream : streams) {
executor.submit(new ConsumerThread(stream));
}
}
为了测试我的消费者,我还创建了一个生产者,写信给 kafka,然后启动了我的消费者,它可以工作。由于线程是在循环中执行的,我不确定我是否做对了。我希望我的消费者永远运行并继续使用来自 kafka 的消息。
让它永远运行的正确方法是什么?