Kafka Zookeeper 基本命令示例

 

Kafka

 

新建Topicnode

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

 

查看已存在Topic列表服務器

bin/kafka-topics.sh --list --zookeeper localhost:2181

 

查看指定Topic狀態性能

bin/kafka-topics.sh --describe --zookeeper localhost:2181 --topic my-topic

 


啓動Consumer讀取消息並輸出到標準輸出測試

bin/kafka-console-consumer.sh --zookeeper localhost:2181 --topic my-topic --from-beginning

 


運行Producer並將Terminal輸入的消息發送到服務端spa

bin/kafka-console-producer.sh --broker-list localhost:9092 --topic my-topic

<< This is a messageThis is another message

 

 

性能測試rest

bin/kafka-producer-perf-test.sh --messages 500000 --message-size 1000 --batch-size 500 --topics test --threads 2 --broker-list localhost:9092

bin/kafka-consumer-perf-test.sh --zookeeper localhost:2181 --messages 500000 --topic test --threads 1

 

 

 

Zookeeper

啓動ZK服務code

bin/zkServer.sh start

 

查看ZK服務狀態server

bin/zkServer.sh status

 

中止ZK服務blog

bin/zkServer.sh stop

 

重啓ZK服務get

bin/zkServer.sh restart

 

鏈接服務器

bin/zkCli.sh -server 127.0.0.1:2181

 

查看根目錄

ls /


建立 testnode節點

create /zk/testnode "test"

 

查看節點內容

get /zk/testnode


設置節點內容

set /zk/testnode test

 

刪除節點

delete /zk/testnode
相關文章
相關標籤/搜索