kafka 删除topic 操作指南

kafka 删除topic 操作指南

删除topic 有两种方式:
开启Kafka的delete.topic.enable=true配置(推荐使用)
手动删除Zookeeper相关数据

方式一
优点:由Kafka来完成Topic的相关删除,只需要修改server.properties配置文件的delete.topic.enable为true就可以了
缺点:需要重启Kafka来完成配置文件的生效

操作步骤:
修改kafka集群的server.properties文件
delete.topic.enable=true #默认是false
auto.create.topics.enable=false #不允许生产者创建topic

pssh -h kafka-ip.lst -l admin -i “echo ‘delete.topic.enable=true’ >> /home/admin/soft/kafka-current/config/server.properties”
pssh -h kafka-ip.lst -l admin -i “echo ‘auto.create.topics.enable=false’ >> /home/admin/soft/kafka-current/config/server.properties”

重启kafka集群

pssh -h kafka-ip.lst -l admin -i “supervisorctl restart kafka”

查看目前所有的topic
ssh kafka所在的服务器

cd /home/admin/soft/kafka-current/
./bin/kafka-topics.sh –list –zookeeper $zkip:port/kafka-zhizi

删除某个topic, 以 streaming-flink-cedt-out-p0 为例
查看streaming-flink-cedt-out-p0 的情况

./bin/kafka-topics.sh –describe –zookeeper zkip:port/kafkazhizitopicstreamingflinkcedtoutp0./bin/kafkatopics.shdeletezookeeper z k i p : p o r t / k a f k a − z h i z i – t o p i c s t r e a m i n g − f l i n k − c e d t − o u t − p 0 删 除 . / b i n / k a f k a − t o p i c s . s h – d e l e t e – z o o k e e p e r zkip:port/kafka-zhizi –topic streaming-flink-cedt-out-p0
查看删除后效果(显示为空)
./bin/kafka-topics.sh –describe –zookeeper $zkip:port/kafka-zhizi –topic streaming-flink-cedt-out-p0

你可能感兴趣的:(kafka 删除topic 操作指南)