Purge Kafka Topic

后端 未结 19 2362
慢半拍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 01:00

    To clean up all the messages from a particular topic using your application group (GroupName should be same as application kafka group name).

    ./kafka-path/bin/kafka-console-consumer.sh --zookeeper localhost:2181 --topic topicName --from-beginning --group application-group

提交回复
热议问题