美文网首页
kafka 入门

kafka 入门

作者: 大漠硝烟 | 来源:发表于2021-12-13 09:40 被阅读0次

    官方文档指南

    https://kafka.apache.org/documentation/#operations

    //创建topic

    bin/kafka-topics.sh --bootstrap-server localhost:9092 --create --topic heima --partitions 2 --replication-factor 1

    //生产消息

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

    //消费消息

    bin/kafka-console-consumer.sh --bootstrap-server localhost:9092 --from-beginning --topic test111111

    相关文章

      网友评论

          本文标题:kafka 入门

          本文链接:https://www.haomeiwen.com/subject/wvkjfrtx.html