zoukankan      html  css  js  c++  java
  • SparkStreamingStateful

    /*
      * @Title: SparkStreamingStatefulDemo
      * @ProjectName spark-scala
      * @Description: TODO
      * @author Mr.lu
      * @date 2018/11/19:10:25
      */
    /**
      * 实时处理数据   有状态计算 需要还原点
      */
    
    import org.apache.spark._
    import org.apache.spark.streaming._ // not necessary since Spark 1.3
    object SparkStreamingStatefulDemo {
    
      def functionToCreateContext(): StreamingContext = {
        //streaming至少两个线程
        val conf = new SparkConf().setMaster("local[*]").setAppName("streaming")
        //时间用于分割数据:Seconds(5)---5秒
        val ssc = new StreamingContext(conf, Seconds(5))
        //模拟从tcp端口读取数据
        //设置还原点目录
        ssc.checkpoint("D:\test\checkpoint")
        val ds = ssc.socketTextStream("localhost", 999)
    
        //current:rdd的1放在里面   Option:可以没数据(第一次的时候没有数据)
        def update(current: Seq[Int], old: Option[Int]) = {
          val newValue = current.sum
          //第一次key出现时,没有状态,需要初始化
          val oldValue = old.getOrElse(0)
    
          //Some:Option下面的子类---hash--->map
          Some(newValue + oldValue)
        }
    
        ds.map(word => (word, 1))
          //update _:将方法转成函数 方法名 _
          .updateStateByKey(update _)
          .print()
        ssc
      }
    
      def main(args: Array[String]): Unit = {
        //    //streaming至少两个线程
        //    val conf=new SparkConf().setMaster("local[*]").setAppName("streaming")
        //    //时间用于分割数据:Seconds(5)---5秒
        //    val ssc=new StreamingContext(conf,Seconds(5))
        val ssc = StreamingContext.getOrCreate("D:\test\checkpoint", functionToCreateContext _)
    
    
    
        //启动streaming context,防止没有数据关闭
        //如果没有接受导数据,也不会立刻关闭,会尝试一段时间强制关闭
        ssc.start()
        ssc.awaitTermination()
      }
    }
    
  • 相关阅读:
    遗产
    (OK) C/S—心跳检测—heartbeat
    如何判断SOCKET已经断开
    accept() returns the same socket descriptor
    C/S—心跳检测—heartbeat
    Linux—Network—Socket—Programming—heartbeat—源代码
    CentOS 7
    yum—repo—yum源
    (OK) CentOS7—mp4—avi—视频播放—SMPlayer
    读史
  • 原文地址:https://www.cnblogs.com/pigdata/p/10305569.html
Copyright © 2011-2022 走看看