Python KafkaConsumer 将 json 输出(回复)重定向到文件

发布于 2025-01-10 14:13:58 字数 357 浏览 0 评论 0原文

我正在 Python 中使用 Kafkaconsumer 消费 Kafka 消息。

我从 Kafka 得到的回复是 json 格式。我想知道如何使用从 Kafka 获得的回复创建 json 文件。

这是我的 for 循环,用于循环遍历消息

Consumer = KafkaConsumer(topic, groupid, Bootstrap server....)

For message in Consumer
   message =message.value
    # Here I want to create a new file

,我想要名为 Reply.json 的文件并将消息写入文件中。

I am consuming Kafka messages using Kafkaconsumer in Python.

The reply I am getting from Kafka is in json format. I want to know how to create a json file using the reply I am getting from Kafka.

Here is my for loop to loop through the messages

Consumer = KafkaConsumer(topic, groupid, Bootstrap server....)

For message in Consumer
   message =message.value
    # Here I want to create a new file

I want the file called Reply.json and write the message in the file.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

从此见与不见 2025-01-17 14:13:58

Kafka只是一个实现细节。打开文件并写入

with open('Reply.json', 'a'):
    for r in consumer:
        f.write(str(r.value))
        f.write('\n')

请注意,这是一个无限循环,因此您的文件可能会变得非常大(如果磁盘空间不足,您的计算机可能会崩溃)

Kafka is only an implementation detail. Open a file and write

with open('Reply.json', 'a'):
    for r in consumer:
        f.write(str(r.value))
        f.write('\n')

Note that this is an infinite loop, and your file may therefore become really large (your computer may crash if it runs out of disk space)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文