赞
踩
自己搭建个zookeeper和kafka记录一下错误。
在网上找了好久,终于看到了错误原因。
新版本的kafka,已经不需要依赖zookeeper来创建topic,新版的kafka创建topic指令为下:
./kafka-topics.sh --create --bootstrap-server localhost:9097 --replication-factor 1 --partitions 1 --topic test1
发送:
./kafka-console-producer.sh --broker-list localhost:9097 --topic test
>hello
>world
接受:
./kafka-console-consumer.sh --bootstrap-server slave1:9097 --topic test --from-beginning hello word
hello
world
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。