Kafka快速入門

kafka個人速記

Posted by dushenzhi on May 15, 2019

下载kafka,链接:http://kafka.apache.org/downloads

  • 安装
tar -xzf kafka_2.12-2.2.0.tgz
cd kafka_2.12-2.2.0
  • 启动zk
bin/zookeeper-server-start.sh -daemon config/zookeeper.properties
  • 启动 Kafka 服务
bin/kafka-server-start.sh -daemon  config/server.properties
  • 创建一个topic
bin/kafka-topics.sh --create --bootstrap-server localhost:9092 --replication-factor 1 --partitions 1 --topic test
  • 查看 Kafka 中的 topic 列表
bin/kafka-topics.sh --list --zookeeper localhost:2181
  • 发送消息
bin/kafka-console-producer.sh --broker-list localhost:9092 --topic test
  • 消费消息
bin/kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic test --from-beginning