Class PhysicalPlan

  • All Implemented Interfaces:
    java.io.Serializable

    public final class PhysicalPlan
    extends java.lang.Object
    implements java.io.Serializable
    A job's physical plan, to be executed by the Runtime.
    See Also:
    Serialized Form
    • Constructor Detail

      • PhysicalPlan

        public PhysicalPlan​(java.lang.String id,
                            DAG<Stage,​StageEdge> stageDAG)
        Constructor.
        Parameters:
        id - the ID of the plan.
        stageDAG - the DAG of stages.
    • Method Detail

      • getPlanId

        public java.lang.String getPlanId()
        Returns:
        the ID of the plan.
      • getStageDAG

        public DAG<Stage,​StageEdge> getStageDAG()
        Returns:
        the DAG of stages.
      • getIdToIRVertex

        public java.util.Map<java.lang.String,​IRVertex> getIdToIRVertex()
        Returns:
        the map from task to IR vertex.
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object