Delete topic in Kafka 0.8.1.1

后端 未结 14 1623
栀梦
栀梦 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 20:02

    The command:

    bin/kafka-topics.sh --delete --zookeeper localhost:2181 --topic test
    

    unfortunately only marks topic for deletion.

    Deletion does not happen.

    That makes troubles, while testing any scripts, which prepares Kafka configuration.

    Connected threads:

    • Purge Kafka Queue
    • Is there a way to delete all the data from a topic or delete the topic before every run?

提交回复
热议问题