Delete topic in Kafka 0.8.1.1

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

    If you have issues deleting the topics, try to delete the topic using:

    $KAFKA_HOME/bin/kafka-topics.sh --delete --zookeeper localhost:2181 --topic your_topic_name
    

    command. Then in order to verify the deletion process, go to the kafka logs directory which normally is placed under /tmp/kafka-logs/, then delete the your_topic_name file via rm -rf your_topic_name command.

    Remember to monitor the whole process via a kafka management tool like Kafka Tool.

    The mentioned process above will remove the topics without kafka server restart.

提交回复
热议问题