美文网首页
kafka quick start

kafka quick start

作者: 圆滚滚_8e70 | 来源:发表于2019-01-30 10:47 被阅读0次

    话不多说,直接动手。

    Step1:下载地址

    kafka2.1.0版本下载地址
    下载后解压

    > tar -xzf kafka_2.11-2.1.0.tgz
    > cd kafka_2.11-2.1.0
    

    Step2:启动服务

    kafka依赖于zookeeper,如果你没有zookeeper,可以使用下面的命令,快速启动一个zookeeper节点

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

    现在开始启动kafka服务

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

    Step3:创建一个topic

    创建一个名字为“test_topic”的topic

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

    然后,查看自己创建的topic

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

    输出: test_topic

    Step4:作为生产者发送一些消息

    > bin/kafka-console-producer.sh --broker-list localhost:9092 --topic test_topic
    this is a message
    this is another message
    

    Step5:启动一个消费者,消费消息

    > bin/kafka-console-consumer.sh --bootstrap-server localhost:9092 --topic test_topic --from-beginning
    this is a message
    this is another message
    

    Step6:启动多个kafka代理

    1.拷贝几份配置文件

    > cp config/server.properties config/server1.properties
    > cp config/server.properties config/server2.properties
    

    2.修改配置文件的内容(broker_id, 端口号,日志文件路径)
    编辑server1.properties

    > vim config/server1.properties
    broker_id=1
    listeners=PLAINTEXT://9093
    log.dirs=/tmp/kafka-logs-1
    

    编辑server2.properties

    > vim config/server2.properties
    broker_id=2
    listeners=PLAINTEXT://9094
    log.dirs=/tmp/kafka-logs-2
    

    borker_id是每个节点在kafka集群里面的唯一标识,listeners标识节点监听的端口号,默认是9092log.dirs标识日志输出路径。
    3.启动kafka节点

    > bin/kafka-server-start.sh config/server1.properties &
    > bin/kafka-server-start.sh config/server2.properties &
    

    4.创建多个实例验证一下

    > bin/kafka-topics.sh --create --zookeeper localhost:2181 --replication-factor 3 --partitions 1 --topic my-replicated-topic
    

    完成第四步,我们已经完成了一个kafka集群。
    5.可以查看各个节点的状态

    > bin/kafka-topics.sh --describe --zookeeper localhost:2181 --topic test_topic
    

    相关文章

      网友评论

          本文标题:kafka quick start

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