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

溫馨提示×

溫馨提示×

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

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

Spark中ContinuousExecution執行流程是怎么樣的

發布時間:2021-12-16 11:22:29 來源:億速云 閱讀:158 作者:小新 欄目:云計算

這篇文章主要介紹Spark中ContinuousExecution執行流程是怎么樣的,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

最重要的是看ContinuousExecution怎么重寫LogicalPlan的,詳細代碼不貼了,最后是創建了Sink類型的LogicalPlan。

    val writer = sink.createStreamWriter(
      s"$runId",
      triggerLogicalPlan.schema,
      outputMode,
      new DataSourceOptions(extraOptions.asJava))
    val withSink = WriteToDataSourceV2(writer, triggerLogicalPlan)

    val reader = withSink.collect {
      case DataSourceV2Relation(_, r: ContinuousReader) => r
    }.head

這里的sink可以看成就是DataSource。然后用withSink作為入參創建了IncrementalExecution。

triggerLogicalPlan是StreamingDataSourceV2Relation類。

IncrementalExecution本身沒啥,只是在每一個處理的時候包裝了一些額外的輔助處理而已。

WriteToDataSourceV2的作用是將triggerLogicalPlan的物理計劃的執行結果通過writer寫入到外部存儲中,所有這里也不看WriteToDataSourceV2了,就看看triggerLogicalPlan的對應的物理計劃是什么,前面說過了它對應的邏輯計劃是:StreamingDataSourceV2Relation。

直接找是不是StreamingDataSourceV2Relation對應的物理計劃的,所以我們先看看StreamingDataSourceV2Relation類的定義:

class StreamingDataSourceV2Relation(
    output: Seq[AttributeReference],
    reader: DataSourceReader) extends DataSourceV2Relation(output, reader) {
  override def isStreaming: Boolean = true
}

原來是DataSourceV2Relation的子類啊!

直接找DataSourceV2Relation的物理計劃吧,在DataSourceV2Strategy.scala文件中定義了。

object DataSourceV2Strategy extends Strategy {
  override def apply(plan: LogicalPlan): Seq[SparkPlan] = plan match {
    case DataSourceV2Relation(output, reader) =>
      DataSourceV2ScanExec(output, reader) :: Nil

    case WriteToDataSourceV2(writer, query) =>
      WriteToDataSourceV2Exec(writer, planLater(query)) :: Nil

    case _ => Nil
  }
}

DataSourceV2Relation對應的物理計劃是DataSourceV2ScanExec。

DataSourceV2ScanExec的代碼也不多。

DataSourceV2ScanExec是用DataSourceReader來作為數據源的讀取器的,它的inputRDDs返回的是DataSourceRDD或者ContinuousDataSourceRDD,ContinuousDataSourceRDD肯定是對應的ContinuousExecution,其他方式就是DataSourceRDD了。

不管是DataSourceRDD或者ContinuousDataSourceRDD,他們的讀取數據源的類都是一樣的,都是DataSourceReader過來的。DataSourceRDD或者ContinuousDataSourceRDD這兩者的代碼都非常少,一看就知道怎么回事了。

以上是“Spark中ContinuousExecution執行流程是怎么樣的”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

AI

康乐县| 遵义市| 梧州市| 镇远县| 武邑县| 凉城县| 沈阳市| 临沧市| 噶尔县| 宜宾市| 栾川县| 德安县| 福建省| 永济市| 天津市| 宜宾市| 阿拉善右旗| 林西县| 福贡县| 通许县| 临泽县| 莱阳市| 红河县| 广平县| 阳泉市| 青浦区| 宁化县| 肥东县| 泰和县| 通城县| 武隆县| 桂林市| 靖远县| 宝山区| 社会| 涞水县| 保亭| 呼伦贝尔市| 娱乐| 永昌县| 新龙县|