本文介绍了Kafka-python 检索主题列表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用 kafka-python 我想知道是否有办法显示所有主题.
I'm using kafka-python and I'm wondering if there is a way for showing all the topics.
像这样:
./bin/kafka-topics.sh --list --zookeeper localhost:2181
推荐答案
import kafka
consumer = kafka.KafkaConsumer(group_id='test', bootstrap_servers=['server'])
consumer.topics()
这篇关于Kafka-python 检索主题列表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!