Delete topic in Kafka 0.8.1.1

后端 未结 14 1628
栀梦
栀梦 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:42

    First, you run this command to delete your topic:

    $ bin/kafka-topics.sh --delete --bootstrap-server localhost:9092 --topic 
    

    List active topics to check delete completely:

    $ bin/kafka-topics.sh --list --bootstrap-server localhost:9092
    

提交回复
热议问题