Class PhysicalPlanGenerator
- java.lang.Object
-
- org.apache.nemo.runtime.common.plan.PhysicalPlanGenerator
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DAG<Stage,StageEdge>
apply(IRDAG irDAG)
Generates thePhysicalPlan
to be executed.DAG<Stage,StageEdge>
stagePartitionIrDAG(IRDAG irDAG)
We take the stage-partitioned DAG and create actual stage and stage edge objects to create a DAG of stages.
-
-
-
Method Detail
-
apply
public DAG<Stage,StageEdge> apply(IRDAG irDAG)
Generates thePhysicalPlan
to be executed.- Specified by:
apply
in interfacejava.util.function.Function<IRDAG,DAG<Stage,StageEdge>>
- Parameters:
irDAG
- that should be converted to a physical execution plan- Returns:
PhysicalPlan
to execute.
-
-