前臺啓動brokershell
bin/kafka-server-start.sh <path>/server.properties複製代碼
Ctrl + C 關閉bootstrap
後臺啓動broker工具
bin/kafka-server-start.sh -daemon <path>/server.properties複製代碼
關閉brokerui
bin/kafka-server-stop.sh複製代碼
建立topicspa
bin/kafka-topics.sh --create --zookeeper localhost:2181 --partitions 3 --replication-factor 3 --topic topicname 複製代碼
刪除topiccode
bin/kafka-topics.sh --delete --zookeeper localhost:2181 --topic topicname 複製代碼
查詢topic列表orm
bin/kafka-topics.sh --zookeeper localhost:2181 --list複製代碼
查詢topic詳情cdn
bin/kafka-topics.sh --zookeeper localhost:2181 --describe --topic topicname 複製代碼
修改topicserver
bin/kafka-topics.sh --alter --zookeeper localhost:2181 --partitions 6 --topic topicname 複製代碼
查詢消費者組kafka
bin/kafka-consumer-groups.sh --bootstrap-server localhost:9092 --list 複製代碼
查詢消費者組詳情
bin/kafka-consumer-groups.sh --bootstrap-server localhost:9092 --describe --group groupname 複製代碼
重設消費者組位移
最先處
bin/kafka-consumer-groups.sh --bootstrap-server localhost:9092 --group groupname --reset-offsets --all-topics --to-earliest --execute
最新處
bin/kafka-consumer-groups.sh --bootstrap-server localhost:9092 --group groupname --reset-offsets --all-topics --to-latest --execute
某個位置
bin/kafka-consumer-groups.sh --bootstrap-server localhost:9092 --group groupname --reset-offsets --all-topics --to-offset 2000 --execute
調整到某個時間以後得最先位移
bin/kafka-consumer-groups.sh --bootstrap-server localhost:9092 --group groupname --reset-offsets --all-topics --to-datetime 2019-09-15T00:00:00.000複製代碼
刪除消費者組
bin/kafka-consumer-groups.sh --zookeeper localhost:2181 --delete --group groupname複製代碼
producer腳本
bin/kafka-console-producer.sh --broker-list localhost:9092 --topic topicname
參數含義:
--compression-codec lz4 壓縮類型
--request-required-acks all acks的值
--timeout 3000 linger.ms的值
--message-send-max-retries 10 retries的值
--max-partition-memory-bytes batch.size值複製代碼
consumer腳本
bin/kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic topicname --from-beginning
指定groupid
bin/kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic topicname --from-beginning
--consumer-property group.id=old-consumer-group
指定分區
bin/kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic topicname --from-beginning
--partition 0複製代碼
kafka-run-class腳本
kafka-run-class.sh kafka.tools.ConsoleConsumer 就是 kafka-console-consumer.sh
kafka-run-class.sh kafka.tools.ConsoleProducer 就是 kafka-console-producer.sh複製代碼
獲取topic當前消息數
kafka-run-class.sh kafka.tools.GetOffsetShell --broker-list localhost:9092 --topic topicname --time -1複製代碼
--time -1表示最大位移 --time -2表示最先位移
查詢consumeroffsets
bin/kafka-simple-consumer-shell.sh --topic _consumer_offsets --partition 12 --broker-list localhost:9092 --formatter "kafka.coorfinator.GroupMetadataManager\$OffsetsMessageFormatter"複製代碼
跨機房災備工具
bin/kafka-mirror-maker.sh --consumer.config consumer.properties --producer.config producer.properties --whitelist topicA|topicB複製代碼
更多實時計算,Flink,Kafka等相關技術博文,歡迎關注實時流式計算