中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

updateStateByKey與mapwithstate怎么實現

發布時間:2021-12-16 16:29:07 來源:億速云 閱讀:186 作者:iii 欄目:云計算

這篇文章主要講解了“updateStateByKey與mapwithstate怎么實現”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“updateStateByKey與mapwithstate怎么實現”吧!

updateStateByKey與mapwithstate 這兩個方法在Dstream中是找不到的,他們是通過隱式轉換來進行實現的

updateStateByKey與mapwithstate怎么實現

由此可以看到,最終是通過PairDStreamFunctions來實現這兩個方法的。

updateStateByKey

updateStateByKey與mapwithstate怎么實現

newUpdateFunc 方法是在原有基礎上如何進行更新的方法

defaultPartitioner()獲得默認的分區數

updateStateByKey與mapwithstate怎么實現

如下代碼出現了一個非常關鍵的地方

new StateDStream(self, ssc.sc.clean(updateFunc), partitioner, rememberPartitioner, None)

updateStateByKey與mapwithstate怎么實現

StateDStream 繼承自Dstream。

stateDStream自會持久化到內存中

updateStateByKey與mapwithstate怎么實現

里面有一個很總要的方法:如果存在parent RDD 就將執行computeUsingPreviousRDD方法

updateStateByKey與mapwithstate怎么實現

在該方法中,有一處性能瓶頸的代碼

updateStateByKey與mapwithstate怎么實現

每次進行更新的時候都會將原有的parentRDD進行cogroup,這樣程序不斷的運行這樣會導致越來越慢!盡量少用改方法!

updateStateByKey與mapwithstate怎么實現

Mapwithstate

mapWithState方法的返回值是MapWithStateDStream,我們來看看它的實現類

MapWithStateDStreamImpl

updateStateByKey與mapwithstate怎么實現

最終返回InternalMapWithStateDStream

updateStateByKey與mapwithstate怎么實現

跟updateStateByKey一樣是持久化在了內存中

persist(StorageLevel.MEMORY_ONLY)

接下來看看每個繼承自Dstream的最重要的方法 compute:

updateStateByKey與mapwithstate怎么實現

最終操作的是RDD:MapWithStateRDD

RDD中的partition被MapWithStateRDDRecord代表

updateStateByKey與mapwithstate怎么實現

MapWithStateRDDRecord有伴生對象:中的方法,該方法是對state進行更新操作,不像 updateStateByKey每次都會進cogroup的操作,而是在原有的基礎上進行更新,效率得到了提高!

def updateRecordWithData[K: ClassTag, V: ClassTag, S: ClassTag, E: ClassTag](
    prevRecord: Option[MapWithStateRDDRecord[K, S, E]],
    dataIterator: Iterator[(K, V)],
    mappingFunction: (Time, K, Option[V], State[S]) => Option[E],
    batchTime: Time,
    timeoutThresholdTime: Option[Long],
    removeTimedoutData: Boolean
  ): MapWithStateRDDRecord[K, S, E] = {
    // Create a new state map by cloning the previous one (if it exists) or by creating an empty one
    val newStateMap = prevRecord.map { _.stateMap.copy() }. getOrElse { new EmptyStateMap[K, S]() }

    val mappedData = new ArrayBuffer[E]
    val wrappedState = new StateImpl[S]()

    // Call the mapping function on each record in the data iterator, and accordingly
    // update the states touched, and collect the data returned by the mapping function
    dataIterator.foreach { case (key, value) =>
      wrappedState.wrap(newStateMap.get(key))
      val returned = mappingFunction(batchTime, key, Some(value), wrappedState)
      if (wrappedState.isRemoved) {
        newStateMap.remove(key)
      } else if (wrappedState.isUpdated
          || (wrappedState.exists && timeoutThresholdTime.isDefined)) {
        newStateMap.put(key, wrappedState.get(), batchTime.milliseconds)
      }
      mappedData ++= returned
    }

    // Get the timed out state records, call the mapping function on each and collect the
    // data returned
    if (removeTimedoutData && timeoutThresholdTime.isDefined) {
      newStateMap.getByTime(timeoutThresholdTime.get).foreach { case (key, state, _) =>
        wrappedState.wrapTimingOutState(state)
        val returned = mappingFunction(batchTime, key, None, wrappedState)
        mappedData ++= returned
        newStateMap.remove(key)
      }
    }

    MapWithStateRDDRecord(newStateMap, mappedData)
  }
}

感謝各位的閱讀,以上就是“updateStateByKey與mapwithstate怎么實現”的內容了,經過本文的學習后,相信大家對updateStateByKey與mapwithstate怎么實現這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

广南县| 绥滨县| 黄陵县| 苍南县| 安平县| 桦南县| 台南市| 梅州市| 东至县| 吴桥县| 平南县| 塘沽区| 丰城市| 昌黎县| 花垣县| 水富县| 桃园市| 松溪县| 丰顺县| 武功县| 永寿县| 长顺县| 泽库县| 临夏县| 旺苍县| 理塘县| 开封县| 武平县| 唐山市| 高清| 大足县| 华阴市| 来凤县| 丹东市| 陈巴尔虎旗| 麟游县| 桓台县| 杂多县| 临湘市| 佛教| 乐平市|