Delete topic in Kafka 0.8.1.1

后端 未结 14 1579
栀梦
栀梦 2020-11-30 19:26

I need to delete the topic test in Apache Kafka 0.8.1.1.

As expressed in the documentation here, I have executed:

bin/kafka-topics.sh --         


        
14条回答
  •  粉色の甜心
    2020-11-30 19:58

    You can delete a specific kafka topic (example: test) from zookeeper shell command (zookeeper-shell.sh). Use the below command to delete the topic

    rmr {path of the topic}
    

    example:

    rmr /brokers/topics/test
    

提交回复
热议问题