Delete topic in Kafka 0.8.1.1

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

    Add below line in ${kafka_home}/config/server.properties

    delete.topic.enable=true
    

    Restart the kafka server with new config:

    ${kafka_home}/bin/kafka-server-start.sh ~/kafka/config/server.properties
    

    Delete the topics you wish to:

    ${kafka_home}/bin/kafka-topics.sh --delete  --zookeeper localhost:2181  --topic daemon12
    

提交回复
热议问题