Delete topic in Kafka 0.8.1.1

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

    Step 1: Make sure you are connected to zookeeper and Kafka running

    Step 2: To delele the Kafka topic run Kafka-topic (Mac) or Kafka-topic.sh if use (linux/Mac) add the port and --topic with name of your topic and --delete it just delete the topic with success.

    # Delete the kafka topic
    # it will delete the kafka topic
    kafka-topics --zookeeper 127.0.0.1:2181 --topic name_of_topic --delete
    # or
    kafka-topics.sh --zookeeper 127.0.0.1:2181 --topic name_of_topic --delete
    

提交回复
热议问题