Python KafkaConsumer 将 json 输出(回复)重定向到文件
我正在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Kafka只是一个实现细节。打开文件并写入
请注意,这是一个无限循环,因此您的文件可能会变得非常大(如果磁盘空间不足,您的计算机可能会崩溃)
Kafka is only an implementation detail. Open a file and write
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)