Uses of Class
org.apache.pig.backend.hadoop.executionengine.physicalLayer.plans.PhysicalPlan

Packages that use PhysicalPlan
org.apache.pig.backend.executionengine   
org.apache.pig.backend.executionengine.util   
org.apache.pig.backend.hadoop.executionengine   
org.apache.pig.backend.hadoop.executionengine.mapReduceLayer   
org.apache.pig.backend.hadoop.executionengine.mapReduceLayer.plans   
org.apache.pig.backend.hadoop.executionengine.physicalLayer Implementation of physical operators that use hadoop as the execution engine and data storage. 
org.apache.pig.backend.hadoop.executionengine.physicalLayer.expressionOperators   
org.apache.pig.backend.hadoop.executionengine.physicalLayer.plans   
org.apache.pig.backend.hadoop.executionengine.physicalLayer.relationalOperators   
org.apache.pig.backend.local.executionengine   
org.apache.pig.backend.local.executionengine.physicalLayer.relationalOperators   
org.apache.pig.pen   
 

Uses of PhysicalPlan in org.apache.pig.backend.executionengine
 

Methods in org.apache.pig.backend.executionengine that return PhysicalPlan
 PhysicalPlan ExecutionEngine.compile(LogicalPlan plan, Properties properties)
          Compiles a logical plan into a physical plan, given a set of configuration properties that apply at the plan-level.
 

Methods in org.apache.pig.backend.executionengine with parameters of type PhysicalPlan
 ExecJob ExecutionEngine.execute(PhysicalPlan plan, String jobName)
          Execute the physical plan in blocking mode.
 void ExecutionEngine.explain(PhysicalPlan plan, PrintStream stream)
          Explain executor specific information.
 ExecJob ExecutionEngine.submit(PhysicalPlan plan, String jobName)
          Execute the physical plan in non-blocking mode
 

Uses of PhysicalPlan in org.apache.pig.backend.executionengine.util
 

Methods in org.apache.pig.backend.executionengine.util with parameters of type PhysicalPlan
static FileSpec ExecTools.checkLeafIsStore(PhysicalPlan plan, PigContext pigContext)
           
 

Uses of PhysicalPlan in org.apache.pig.backend.hadoop.executionengine
 

Methods in org.apache.pig.backend.hadoop.executionengine that return PhysicalPlan
 PhysicalPlan HExecutionEngine.compile(LogicalPlan plan, Properties properties)
           
 

Methods in org.apache.pig.backend.hadoop.executionengine with parameters of type PhysicalPlan
 ExecJob HExecutionEngine.execute(PhysicalPlan plan, String jobName)
           
 void HExecutionEngine.explain(PhysicalPlan plan, PrintStream stream)
           
 ExecJob HExecutionEngine.submit(PhysicalPlan plan, String jobName)
           
 

Uses of PhysicalPlan in org.apache.pig.backend.hadoop.executionengine.mapReduceLayer
 

Fields in org.apache.pig.backend.hadoop.executionengine.mapReduceLayer declared as PhysicalPlan
 PhysicalPlan MapReduceOper.combinePlan
           
 PhysicalPlan MapReduceOper.mapPlan
           
protected  PhysicalPlan PigMapBase.mp
           
 PhysicalPlan MapReduceOper.reducePlan
           
protected  PhysicalPlan PigMapReduce.Reduce.rp
           
 

Methods in org.apache.pig.backend.hadoop.executionengine.mapReduceLayer that return PhysicalPlan
 PhysicalPlan MRCompiler.getPlan()
          Used to get the plan that was compiled
 

Methods in org.apache.pig.backend.hadoop.executionengine.mapReduceLayer with parameters of type PhysicalPlan
abstract  void Launcher.explain(PhysicalPlan pp, PigContext pc, PrintStream ps)
          Explain how a pig job will be executed on the underlying infrastructure.
 void LocalLauncher.explain(PhysicalPlan php, PigContext pc, PrintStream ps)
           
 void MapReduceLauncher.explain(PhysicalPlan php, PigContext pc, PrintStream ps)
           
abstract  boolean Launcher.launchPig(PhysicalPlan php, String grpName, PigContext pc)
          Method to launch pig for hadoop either for a cluster's job tracker or for a local job runner.
 boolean LocalLauncher.launchPig(PhysicalPlan php, String grpName, PigContext pc)
           
 boolean MapReduceLauncher.launchPig(PhysicalPlan php, String grpName, PigContext pc)
           
 boolean LocalLauncher.launchPigWithCombinePlan(PhysicalPlan php, String grpName, PigContext pc, PhysicalPlan combinePlan)
           
 

Constructors in org.apache.pig.backend.hadoop.executionengine.mapReduceLayer with parameters of type PhysicalPlan
MRCompiler(PhysicalPlan plan)
           
MRCompiler(PhysicalPlan plan, PigContext pigContext)
           
UDFFinishVisitor(PhysicalPlan plan, PlanWalker<PhysicalOperator,PhysicalPlan> walker)
           
 

Constructor parameters in org.apache.pig.backend.hadoop.executionengine.mapReduceLayer with type arguments of type PhysicalPlan
UDFFinishVisitor(PhysicalPlan plan, PlanWalker<PhysicalOperator,PhysicalPlan> walker)
           
 

Uses of PhysicalPlan in org.apache.pig.backend.hadoop.executionengine.mapReduceLayer.plans
 

Methods in org.apache.pig.backend.hadoop.executionengine.mapReduceLayer.plans with parameters of type PhysicalPlan
 void UDFFinder.setPlan(PhysicalPlan plan)
           
 

Constructors in org.apache.pig.backend.hadoop.executionengine.mapReduceLayer.plans with parameters of type PhysicalPlan
UDFFinder(PhysicalPlan plan, PlanWalker<PhysicalOperator,PhysicalPlan> walker)
           
 

Constructor parameters in org.apache.pig.backend.hadoop.executionengine.mapReduceLayer.plans with type arguments of type PhysicalPlan
UDFFinder(PhysicalPlan plan, PlanWalker<PhysicalOperator,PhysicalPlan> walker)
           
 

Uses of PhysicalPlan in org.apache.pig.backend.hadoop.executionengine.physicalLayer
 

Fields in org.apache.pig.backend.hadoop.executionengine.physicalLayer declared as PhysicalPlan
protected  PhysicalPlan LogToPhyTranslationVisitor.currentPlan
           
protected  PhysicalPlan PhysicalOperator.parentPlan
           
 

Fields in org.apache.pig.backend.hadoop.executionengine.physicalLayer with type parameters of type PhysicalPlan
protected  Stack<PhysicalPlan> LogToPhyTranslationVisitor.currentPlans
           
 

Methods in org.apache.pig.backend.hadoop.executionengine.physicalLayer that return PhysicalPlan
 PhysicalPlan LogToPhyTranslationVisitor.getPhysicalPlan()
           
 

Methods in org.apache.pig.backend.hadoop.executionengine.physicalLayer with parameters of type PhysicalPlan
 void PhysicalOperator.setParentPlan(PhysicalPlan physicalPlan)
           
 

Constructors in org.apache.pig.backend.hadoop.executionengine.physicalLayer with parameters of type PhysicalPlan
POPrinter(PrintStream ps, PhysicalPlan pp)
           
 

Uses of PhysicalPlan in org.apache.pig.backend.hadoop.executionengine.physicalLayer.expressionOperators
 

Methods in org.apache.pig.backend.hadoop.executionengine.physicalLayer.expressionOperators with parameters of type PhysicalPlan
 void UnaryExpressionOperator.setInputAsExpr(PhysicalPlan plan)
          Set the contained expression to the be the input value.
 

Uses of PhysicalPlan in org.apache.pig.backend.hadoop.executionengine.physicalLayer.plans
 

Methods in org.apache.pig.backend.hadoop.executionengine.physicalLayer.plans that return PhysicalPlan
 PhysicalPlan PhysicalPlan.clone()
           
 

Constructors in org.apache.pig.backend.hadoop.executionengine.physicalLayer.plans with parameters of type PhysicalPlan
PhyPlanVisitor(PhysicalPlan plan, PlanWalker<PhysicalOperator,PhysicalPlan> walker)
           
 

Constructor parameters in org.apache.pig.backend.hadoop.executionengine.physicalLayer.plans with type arguments of type PhysicalPlan
PhyPlanVisitor(PhysicalPlan plan, PlanWalker<PhysicalOperator,PhysicalPlan> walker)
           
 

Uses of PhysicalPlan in org.apache.pig.backend.hadoop.executionengine.physicalLayer.relationalOperators
 

Fields in org.apache.pig.backend.hadoop.executionengine.physicalLayer.relationalOperators with type parameters of type PhysicalPlan
protected  List<PhysicalPlan> POForEach.inputPlans
           
protected  List<PhysicalPlan> POLocalRearrange.plans
           
protected  List<PhysicalPlan> POPreCombinerLocalRearrange.plans
           
 

Methods in org.apache.pig.backend.hadoop.executionengine.physicalLayer.relationalOperators that return PhysicalPlan
 PhysicalPlan POFilter.getPlan()
           
 

Methods in org.apache.pig.backend.hadoop.executionengine.physicalLayer.relationalOperators that return types with arguments of type PhysicalPlan
 List<PhysicalPlan> POForEach.getInputPlans()
           
 List<PhysicalPlan> POJoinPackage.getInputPlans()
           
 List<List<PhysicalPlan>> POFRJoin.getJoinPlans()
           
 List<PhysicalPlan> POLocalRearrange.getPlans()
           
 List<PhysicalPlan> POPreCombinerLocalRearrange.getPlans()
           
 List<PhysicalPlan> POSort.getSortPlans()
           
 

Methods in org.apache.pig.backend.hadoop.executionengine.physicalLayer.relationalOperators with parameters of type PhysicalPlan
 void POForEach.addInputPlan(PhysicalPlan plan, boolean flatten)
           
 void POFilter.setPlan(PhysicalPlan plan)
           
 

Method parameters in org.apache.pig.backend.hadoop.executionengine.physicalLayer.relationalOperators with type arguments of type PhysicalPlan
 void POForEach.setInputPlans(List<PhysicalPlan> plans)
           
 void POJoinPackage.setInputPlans(List<PhysicalPlan> plans)
           
 void POLocalRearrange.setPlans(List<PhysicalPlan> plans)
           
 void POPreCombinerLocalRearrange.setPlans(List<PhysicalPlan> plans)
           
 void POLocalRearrange.setPlansFromCombiner(List<PhysicalPlan> plans)
           
 void POSort.setSortPlans(List<PhysicalPlan> sortPlans)
           
 

Constructor parameters in org.apache.pig.backend.hadoop.executionengine.physicalLayer.relationalOperators with type arguments of type PhysicalPlan
POForEach(OperatorKey k, int rp, List<PhysicalPlan> inp, List<Boolean> isToBeFlattened)
           
POFRJoin(OperatorKey k, int rp, List<PhysicalOperator> inp, List<List<PhysicalPlan>> ppLists, List<Byte> keyTypes, FileSpec[] replFiles, int fragment)
           
POOptimizedForEach(OperatorKey k, int rp, List<PhysicalPlan> inp, List<Boolean> isToBeFlattened)
           
POSort(OperatorKey k, int rp, List inp, List<PhysicalPlan> sortPlans, List<Boolean> mAscCols, POUserComparisonFunc mSortFunc)
           
 

Uses of PhysicalPlan in org.apache.pig.backend.local.executionengine
 

Methods in org.apache.pig.backend.local.executionengine that return PhysicalPlan
 PhysicalPlan LocalExecutionEngine.compile(LogicalPlan plan, Properties properties)
           
 

Methods in org.apache.pig.backend.local.executionengine with parameters of type PhysicalPlan
 ExecJob LocalExecutionEngine.execute(PhysicalPlan plan, String jobName)
           
 void LocalPigLauncher.explain(PhysicalPlan pp, PigContext pc, PrintStream ps)
           
 void LocalExecutionEngine.explain(PhysicalPlan plan, PrintStream stream)
           
 boolean LocalPigLauncher.launchPig(PhysicalPlan php, String grpName, PigContext pc)
           
 LocalJob LocalExecutionEngine.submit(PhysicalPlan plan, String jobName)
           
 

Uses of PhysicalPlan in org.apache.pig.backend.local.executionengine.physicalLayer.relationalOperators
 

Methods in org.apache.pig.backend.local.executionengine.physicalLayer.relationalOperators with parameters of type PhysicalPlan
 void POSplitOutput.setPlan(PhysicalPlan compPlan)
           
 

Uses of PhysicalPlan in org.apache.pig.pen
 

Constructors in org.apache.pig.pen with parameters of type PhysicalPlan
DerivedDataVisitor(LogicalOperator op, PigContext pc, Map<LOLoad,DataBag> baseData, Map<LogicalOperator,PhysicalOperator> logToPhyMap, PhysicalPlan physPlan)
           
DerivedDataVisitor(LogicalPlan plan, PigContext pc, Map<LOLoad,DataBag> baseData, Map<LogicalOperator,PhysicalOperator> logToPhyMap, PhysicalPlan physPlan)
           
LineageTrimmingVisitor(LogicalPlan plan, Map<LOLoad,DataBag> baseData, Map<LogicalOperator,PhysicalOperator> LogToPhyMap, PhysicalPlan physPlan, PigContext pc)
           
 



Copyright © ${year} The Apache Software Foundation