Delete topic in Kafka 0.8.1.1

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

    This steps will delete all topics and data

    • Stop Kafka-server and Zookeeper-server
    • Remove the tmp data directories of both services, by default they are C:/tmp/kafka-logs and C:/tmp/zookeeper.
    • then start Zookeeper-server and Kafka-server
    0 讨论(0)
  • 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?
    0 讨论(0)
提交回复
热议问题