创建topic指令
bin/kafka-topics.sh --bootstrap-server master:9092 --create --topic my-topic --replication-factor 3 --partitions 3
生产1000条消息
sh bin/kafka-verifiable-producer.sh --topic test --bootstrap-server master:9092 --max-messages 1000
消费100条消息
sh bin/kafka-consumer-perf-test.sh -topic test --bootstrap-server master:9092 --messages 100