Purge Kafka Topic

后端 未结 19 2395
慢半拍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:54

    To purge the queue you can delete the topic:

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

    then re-create it:

    bin/kafka-topics.sh --create --zookeeper localhost:2181 \
        --replication-factor 1 --partitions 1 --topic test
    

提交回复
热议问题