我尝试删除/var/lib/kafka
处的所有日志我收到了新消息,但我觉得这不是正确的方法。我已将delete.topic.enable=true
设置为/etc/kafka/server.properties
P
答案 0 :(得分:1)
查看Kafka主题:
kafka-topics.sh --zookeeper host:2181 --list
要删除Kafka主题:
kafka-topics.sh --zookeeper host:2181 --delete --topic topic_name
要查找kafka主题,请尝试以下操作:
locate -i kafka-topics.sh
答案 1 :(得分:0)
我认为一种好方法是使用一些图形用户界面工具,例如kafka-manager(https://github.com/yahoo/kafka-manager)
答案 2 :(得分:0)
到目前为止,标准方法是在kafka-topics.sh --delete.....
设置为true的情况下调用delete.topic.enable
。