kafka
Posted flyyu1
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了kafka相关的知识,希望对你有一定的参考价值。
开启zookeeper
bin/zookeeper-server-start.sh -daemon config/zookeeper.properties
查看jps进程
jps
启动kafka
bin/kafka-server-start.sh config/server.properties
创建topic
bin/kafka-topics.sh --create --zookeeper localhost:2181 --replication-factor 1 --partitions 1 --topic fly_ad_test
查看topic list列表
bin/kafka-topics.sh --list --zookeeper localhost:2181
启动producer
bin/kafka-console-producer.sh --broker-list localhost:9092 --topic fly_ad_test
启动consumer
bin/kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic fly_ad_test --from-beginning
以上是关于kafka的主要内容,如果未能解决你的问题,请参考以下文章
大数据技术之KafkaKafka APIKafka监控Flume对接KafkaKafka面试题