启动命令
bin/kafka-server-start.sh config/server.properties &
关闭 xshell 客户端,kafka 即退出,要想一直在后台运行,则在关闭客户端之前,不要用ctrl+c,用exit 函数去退出,则 kafka 在后台运行。
查看所有topic
bin/kafka-topics.sh --zookeeper localhost:2181/kafka --list
创建topic
bin/kafka-topics.sh --zookeeper localhost:2181/kafka --create --replication-factor 3 --partitions 2 --topic first
选项说明:
–topic 定义topic名
–replication-factor 定义副本数
–partitions 定义分区数
删除topic
bin/kafka-topics.sh --zookeeper localhost:2181/kafka --delete --topic first
需要server.properties中设置delete.topic.enable=true否则只是标记删除或者直接重启。
消费消息
bin/kafka-console-consumer.sh --bootstrap-server localhost:9092 --from-beginning --topic first
–from-beginning:会把first主题中以往所有的数据都读取出来。根据业务场景选择是否增加该配置。
发送消息
bin/kafka-console-producer.sh --broker-list localhost:9092 --topic first
>hello world
>good night
producer:
consumer:
6)查看某个Topic的详情
[itstar@bigdata11 kafka]$ bin/kafka-topics.sh --zookeeper bigdata11:2181 --describe --topic first