org.apache.spark.sql.execution.SparkStrategies
Returns a placeholder for a physical plan that executes plan
.
Returns a placeholder for a physical plan that executes plan
. This placeholder will be
filled in automatically by the QueryPlanner using the other execution strategies that are
available.
This strategy is just for explaining
Dataset/DataFrame
created byspark.readStream
. It won't affect the execution, becauseStreamingRelation
will be replaced withStreamingExecutionRelation
inStreamingQueryManager
andStreamingExecutionRelation
will be replaced with the real relation using theSource
inStreamExecution
.