When/how does a topic “marked for deletion” get finally removed?

前端 未结 11 1047
天命终不由人
天命终不由人 2020-12-24 00:09

I have issued the command to delete a topic:

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

It seemed to

11条回答
  •  无人及你
    2020-12-24 00:34

    For kafka version 0.10.0.0 it is enough to enable the topic deletion by setting:

    delete.topic.enable
    

    The topic is deleted within few moments

    kafka-topics --delete --zookeeper your-zk:2181 --topic yourTopicName
    

    You can confirm that it is gone with the following command:

    kafka-topics --describe --zookeeper your-zk:2181 --topic yourTopicName
    

提交回复
热议问题