Spark Engine - Logical Plan

Spark Query Plan Generation

About

Logical Plan in Spark.

Each data structure represents a logical plan that describes the computation required to produce the data.

When an action is invoked, Spark's query optimizer optimizes the logical plan and generates a physical plan for efficient execution in a parallel and distributed manner.

Management

See

To explore the logical plan, use the explain function.





Discover More
Spark Query Plan Generation
Spark Engine - Physical Plan

in Spark When an action is invoked, Spark's query optimizer optimizes the logical plan and generates a physical plan for efficient execution. To explore the physical plan, use the explain...
Query Plan For The Same Query Response Time
Sql Engine - (Physical|Execution) Plan

A physical plan (or execution plan) is an ordered tree of physical relational operator that represent the execution a query A logical plan is also a ordered tree of relational operator but without the...



Share this page:
Follow us:
Task Runner