了解使用者组 ID
我重新安装了Apache Kafka 0.10.1.0。
我能够在命令提示符下发送/接收消息。
在使用生产者/消费者Java示例时,我无法知道消费者示例 group.id 参数。
让我知道如何解决此问题。
以下是我使用的消费者示例:
public static void main(String[] args) {
Properties props = new Properties();
props.put("bootstrap.servers", "localhost:9092");
props.put("group.id", "my-topic");
props.put("enable.auto.commit", "true");
props.put("auto.commit.interval.ms", "1000");
props.put("key.deserializer", "org.apache.kafka.common.serialization.StringDeserializer");
props.put("value.deserializer", "org.apache.kafka.common.serialization.StringDeserializer");
KafkaConsumer<String, String> consumer = new KafkaConsumer<>(props);
try {
consumer.subscribe(Arrays.asList("my-topic"));
ConsumerRecords<String, String> records = consumer.poll(100);
System.err.println("records size=>"+records.count());
for (ConsumerRecord<String, String> record : records)
System.out.printf("offset = %d, key = %s, value = %s%n", record.offset(), record.key(), record.value());
}
catch (Exception ex){
ex.printStackTrace();
}
finally {
consumer.close();
}
}
运行消费者的命令后,我可以看到生产者发布的消息(在控制台上)。但无法看到来自java程序的消息
bin\windows\kafka-console-consumer.bat --bootstrap-server localhost:9092 --topic my-topic --from-start