I have issued the command to delete a topic:
./bin/kafka-topics.sh --zookeeper localhost:2181 --delete --topic vip_ips_alerts
It seemed to
I faced the same issue and spend a couple of days trying to identify with the issue was. I triggered command to delete the topics, however the topics were marked for deletion but they were not deleted.
delete.topic.enable=true for all brokers
None helped. I had to finally login to zooker
./zkCli.sh # and delete the topics using
rmr /brokers/topics/<> and rmr /admin/delete_topics/<>
Please remember to restart kafka after this. Hope this solves your issue.