gpt4 book ai didi

apache-kafka - 有没有办法在 kafka-console-producer.sh 中添加标题

转载 作者:行者123 更新时间:2023-12-04 12:20:59 25 4
gpt4 key购买 nike

我想使用 kafka-console-producer.sh 来触发一些带有 Kafka header 的 JSON 消息。

这可能吗?

docker exec -it kafka_1 /opt/kafka_2.12-2.3.0/bin/kafka-console-producer.sh --broker-list localhost:9093 --topic my-topic --producer.config /opt/kafka_2.12-2.3.0/config/my-custom.properties

最佳答案

不,但您可以使用 kafkacat-H争论:
生产:

echo '{"col_foo":1}'|kafkacat -b localhost:9092 -t test -P -H foo=bar
消耗:
kafkacat -b localhost:9092 -t test -C -f '-----\nTopic %t[%p]\nOffset: %o\nHeaders: %h\nKey: %k\nPayload (%S bytes): %s\n'
-----
Topic test[0]
Offset: 0
Headers: foo=bar
Key:
Payload (9 bytes): col_foo:1
% Reached end of topic test [0] at offset 1

关于apache-kafka - 有没有办法在 kafka-console-producer.sh 中添加标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58716683/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com