如何将KStream打印到控制台?

问题描述 投票:2回答:2

我创建了一个Kafka主题并向其推送了一条消息。

所以

bin/kafka-console-consumer --bootstrap-server abc.xyz.com:9092 --topic myTopic --from-beginning --property print.key=true --property key.separator="-"

版画

key1-customer1

在命令行上。

我想从这个主题创建一个Kafka Stream,并希望在控制台上打印这个key1-customer1

我为它写了以下内容:

final Properties streamsConfiguration = new Properties();

streamsConfiguration.put(StreamsConfig.APPLICATION_ID_CONFIG, "app-id");
streamsConfiguration.put(StreamsConfig.CLIENT_ID_CONFIG, "client-id");
streamsConfiguration.put(StreamsConfig.BOOTSTRAP_SERVERS_CONFIG, "abc.xyz.com:9092");

streamsConfiguration.put(StreamsConfig.DEFAULT_KEY_SERDE_CLASS_CONFIG, Serdes.String().getClass().getName());
streamsConfiguration.put(StreamsConfig.DEFAULT_VALUE_SERDE_CLASS_CONFIG, Serdes.String().getClass().getName());

// Records should be flushed every 10 seconds. This is less than the default
// in order to keep this example interactive.
streamsConfiguration.put(StreamsConfig.COMMIT_INTERVAL_MS_CONFIG, 10 * 1000);
// For illustrative purposes we disable record caches
streamsConfiguration.put(StreamsConfig.CACHE_MAX_BYTES_BUFFERING_CONFIG, 0);

final StreamsBuilder builder = new StreamsBuilder();
final KStream<String, String> customerStream = builder.stream("myTopic");
customerStream.foreach(new ForeachAction<String, String>() {
    public void apply(String key, String value) {
        System.out.println(key + ": " + value);
    }
});

final KafkaStreams streams = new KafkaStreams(builder.build(), streamsConfiguration);

streams.start();   

Runtime.getRuntime().addShutdownHook(new Thread(streams::close));

这不会失败。但是,这不会在控制台上打印任何内容,正如this answer所暗示的那样。

我是卡夫卡的新手。所以做这项工作的任何建议都会对我有所帮助。

java apache-kafka-streams
2个回答
1
投票

TL; DR使用Printed

import org.apache.kafka.streams.kstream.Printed
val sysout = Printed
  .toSysOut[String, String]
  .withLabel("customerStream")
customerStream.print(sysout)

0
投票

我会尝试取消CLIENT_ID_CONFIG并只留下APPLICATION_ID_CONFIG。 Kafka Streams uses the application ID to set the client ID

我还将验证您的Kafka Streams应用程序正在使用的使用者组ID的偏移量(此使用者组ID也基于您的应用程序ID)。使用kafka-consumer-groups.sh工具。可能是您的Streams应用程序超出了您为该主题生成的所有记录,可能是因为自动偏移重置设置为最新,或者可能是由于您的问题无法轻易辨别的其他原因。

© www.soinside.com 2019 - 2024. All rights reserved.