Purge Kafka Topic

后端 未结 19 2361
慢半拍i
慢半拍i 2020-11-28 00:06

Is there a way to purge the topic in kafka?

I pushed a message that was too big into a kafka message topic on my local machine, now I\'m getting an

19条回答
  •  挽巷
    挽巷 (楼主)
    2020-11-28 00:58

    Tested in Kafka 0.8.2, for the quick-start example: First, Add one line to server.properties file under config folder:

    delete.topic.enable=true
    

    then, you can run this command:

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

提交回复
热议问题