91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

博湖县| 金溪县| 黔江区| 岐山县| 溧阳市| 磐石市| 呼和浩特市| 麻江县| 博白县| 浦东新区| 左云县| 德格县| 武汉市| 息烽县| 怀集县| 武强县| 连云港市| 马尔康县| 斗六市| 清河县| 延庆县| 育儿| 通州区| 台东县| 衡阳市| 定边县| 长武县| 罗定市| 涡阳县| 肇州县| 新昌县| 南华县| 德清县| 门源| 仲巴县| 信阳市| 图们市| 牡丹江市| 庐江县| 剑河县| 古交市|