zoukankan      html  css  js  c++  java
  • IDEA中运行DirectKafkaWordCount程序

    1,将SPARK_HOME中的DirectKafkaWordCount程序复制到idea中.
    2,由于在KafkaWordCount中已引入相关jar包,此步可略过
    3,配置configurations参数
     
    关于program arguments参数,程序中定义如下:
    /**
    * Consumes messages from one or more topics in Kafka and does wordcount.
    * Usage: DirectKafkaWordCount <brokers> <topics>
    * <brokers> is a list of one or more Kafka brokers
    * <topics> is a list of one or more kafka topics to consume from
    *
    * Example:
    * $ bin/run-example streaming.DirectKafkaWordCount broker1-host:port,broker2-host:port
    * topic1,topic2
    */
    第一个参数为一系列的brokers,可以设置多个;第二个参数为一系列topic,也可以设置为多个.
    本次运行时只采用localhost:9092和test
    4,将之前的KafkaWordCountProducer运行起来,运行DirectKafkaWordCount可以看到如下结果:

    也可不运行KafkaWordCountProducer,而是另外起一个console服务,在窗口中运行kafka-console-producer.sh --broker-list localhost:9092 --sync --topic test
  • 相关阅读:
    MySQL 联合索引测试
    Redis的安装
    MySQL中int(5) 中的5代表什么意思?
    JS树结构转list结构
    SpringMVC数组参数
    立即执行函数(function(){})()与闭包
    女票口红礼物列表
    Idea中编辑后需要重启问题
    Myeclipse6.5迁移到IDEA
    Layui前端框架
  • 原文地址:https://www.cnblogs.com/wuyida/p/6300254.html
Copyright © 2011-2022 走看看