case class SparkPlanGraph(nodes: Seq[SparkPlanGraphNode], edges: Seq[SparkPlanGraphEdge]) extends Product with Serializable
A graph used for storing information of an executionPlan of DataFrame.
Each graph is defined with a set of nodes and a set of edges. Each node represents a node in the SparkPlan tree, and each edge represents a parent-child relationship between two nodes.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- SparkPlanGraph
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
- new SparkPlanGraph(nodes: Seq[SparkPlanGraphNode], edges: Seq[SparkPlanGraphEdge])