kafka 单节点快速运用

来源:互联网 发布:摩擦纳米发电机 知乎 编辑:程序博客网 时间:2024/06/05 19:08


第一步下载 解压

tar -xzf kafka_2.11-0.10.0.0.tgz

cd kafka_2.11-0.10.0.0

第二部启动kafka内部的zookeeper 和kafka

bin/zookeeper-server-start.sh config/zookeeper.properties &

[2013-04-22 15:01:37,495] INFO Reading configuration from: config/zookeeper.properties (org.apache.zookeeper.server.quorum.QuorumPeerConfig) ...

启动kafaka

bin/kafka-server-start.sh config/server.properties &

[2013-04-22 15:01:47,028] INFO Verifying properties (kafka.utils.VerifiableProperties) [2013-04-22 15:01:47,051] INFO Property socket.send.buffer.bytes is overridden to 1048576 (kafka.utils.VerifiableProperties) ...

第三步创建一个topic

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

这个topic的名字为test

查看topic

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

test

第四部使用生产者来生产一条消息

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

This is a message This is another message

第五步使用消费者来消费一条消息

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

This is a message This is another message

说明 这里第五部跟第四步需要开启独立的控制台 一边是负责生产消息一遍是负责消费消息

0 0