kafka常用脚本
Posted 上官沐雪
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了kafka常用脚本相关的知识,希望对你有一定的参考价值。
kafka相关的脚本
kafka脚本
## 服务启动 指定配置文件
./kafka-server-start.sh -daemon /opt/kafka/config/server.properties
t_monitor
列举topic: kafka-topics --zookeeper 192.168.102.7:2181 --list
dsp_bid
dsp_click
dsp_monitor
dsp_win
t_monitor
test
###新建topic
kafka-topics --create --zookeeper hostname:2181 --replication-factor 2 --partitions 3 --topic t_monitor
###查看topic
kafka-topics --zookeeper hostname:2181 --describe --topic t_monitor
### Topic: t_monitor Partition: 0 Leader: 368 Replicas: 368,370,369 Isr: 368,370,369
###生产者
kafka-console-producer.sh --broker-list hostname:9092 --topic t_monitor
## 消费topic数据
kafka-console-consumer --bootstrap-server hostname:9092 --topic t_monitor --from-beginning
##删除topic
kafka-topics --zookeeper hostname:2181 --delete --topic t_monitor
##修改topic的分区数
kafka-topics --alter --zookeeper hostname:2181 --topic t_monitor --partitions 3
##查看消费者组的列表
bin/kafka-consumer-groups.sh --bootstrap-server hostname:9092 --new-consumer --list console-consumer-54336
##查看消费组的消费详情
bin/kafka-consumer-groups.sh --bootstrap-server company01:9092 --new-consumer --describe --group console-consumer-54336
以上是关于kafka常用脚本的主要内容,如果未能解决你的问题,请参考以下文章