Github user arunmahadevan commented on a diff in the pull request:
https://github.com/apache/spark/pull/21721#discussion_r208106031
--- Diff:
sql/core/src/main/scala/org/apache/spark/sql/execution/streaming/ProgressReporter.scala
---
@@ -196,6 +237,18 @@ trait ProgressReporter extends Logging {
currentStatus = currentStatus.copy(isTriggerActive = false)
}
+ /** Extract writer from the executed query plan. */
+ private def dataSourceWriter: Option[DataSourceWriter] = {
+ if (lastExecution == null) return None
+ lastExecution.executedPlan.collect {
+ case p if p.isInstanceOf[WriteToDataSourceV2Exec] =>
--- End diff --
yes, currently the progress is reported only for micro-batch mode. This
should be supported for continuous mode as well when we start reporting
progress, but needs some more work -
https://issues.apache.org/jira/browse/SPARK-23887
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]