|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.pig.impl.plan.PlanVisitor<PhysicalOperator,PhysicalPlan>
org.apache.pig.backend.hadoop.executionengine.physicalLayer.plans.PhyPlanVisitor
org.apache.pig.backend.hadoop.executionengine.mapReduceLayer.MRCompiler
public class MRCompiler
The compiler that compiles a given physical plan into a DAG of MapReduce operators which can then be converted into the JobControl structure. Is implemented as a visitor of the PhysicalPlan it is compiling. Currently supports all operators except the MR Sort operator Uses a predecessor based depth first traversal. To compile an operator, first compiles the predecessors into MapReduce Operators and tries to merge the current operator into one of them. The goal being to keep the number of MROpers to a minimum. It also merges multiple Map jobs, created by compiling the inputs individually, into a single job. Here a new map job is created and then the contents of the previous map plans are added. However, any other state that was in the previous map plans, should be manually moved over. So, if you are adding something new take care about this. Ex of this is in requestedParallelism Only in case of blocking operators and splits, a new MapReduce operator is started using a store-load combination to connect the two operators. Whenever this happens care is taken to add the MROper into the MRPlan and connect it appropriately.
Field Summary | |
---|---|
static String |
FILE_CONCATENATION_THRESHOLD
|
static String |
OPTIMISTIC_FILE_CONCATENATION
|
static String |
USER_COMPARATOR_MARKER
|
Fields inherited from class org.apache.pig.impl.plan.PlanVisitor |
---|
mCurrentWalker, mPlan |
Constructor Summary | |
---|---|
MRCompiler(PhysicalPlan plan)
|
|
MRCompiler(PhysicalPlan plan,
PigContext pigContext)
|
Method Summary | |
---|---|
void |
aggregateScalarsFiles()
|
MROperPlan |
compile()
The front-end method that the user calls to compile the plan. |
void |
connectSoftLink()
|
CompilationMessageCollector |
getMessageCollector()
|
MROperPlan |
getMRPlan()
Used to get the compiled plan |
PhysicalPlan |
getPlan()
Used to get the plan that was compiled |
void |
visitCollectedGroup(POCollectedGroup op)
|
void |
visitCounter(POCounter op)
For the counter job, it depends if it is row number or not. |
void |
visitCross(POCross op)
|
void |
visitDistinct(PODistinct op)
|
void |
visitFilter(POFilter op)
|
void |
visitFRJoin(POFRJoin op)
This is an operator which will have multiple inputs(= to number of join inputs) But it prunes off all inputs but the fragment input and creates separate MR jobs for each of the replicated inputs and uses these as the replicated files that are configured in the POFRJoin operator. |
void |
visitGlobalRearrange(POGlobalRearrange op)
|
void |
visitLimit(POLimit op)
|
void |
visitLoad(POLoad op)
|
void |
visitLocalRearrange(POLocalRearrange op)
|
void |
visitMergeCoGroup(POMergeCogroup poCoGrp)
Leftmost relation is referred as base relation (this is the one fed into mappers.) First, close all MROpers except for first one (referred as baseMROPer) Then, create a MROper which will do indexing job (idxMROper) Connect idxMROper before the mappedMROper in the MRPlan. |
void |
visitMergeJoin(POMergeJoin joinOp)
Since merge-join works on two inputs there are exactly two MROper predecessors identified as left and right. |
void |
visitNative(PONative op)
|
void |
visitPackage(POPackage op)
|
void |
visitPOForEach(POForEach op)
|
void |
visitRank(PORank op)
In case of PORank, it is closed any other previous job (containing POCounter as a leaf) and PORank is added on map phase. |
void |
visitSkewedJoin(POSkewedJoin op)
|
void |
visitSort(POSort op)
|
void |
visitSplit(POSplit op)
Compiles a split operator. |
void |
visitStore(POStore op)
|
void |
visitStream(POStream op)
|
void |
visitUnion(POUnion op)
|
Methods inherited from class org.apache.pig.backend.hadoop.executionengine.physicalLayer.plans.PhyPlanVisitor |
---|
visitAdd, visitAnd, visitBinCond, visitCast, visitComparisonFunc, visitConstant, visitDemux, visitDivide, visitEqualTo, visitGreaterThan, visitGTOrEqual, visitIsNull, visitLessThan, visitLTOrEqual, visitMapLookUp, visitMod, visitMultiply, visitNegative, visitNot, visitNotEqualTo, visitOr, visitPartialAgg, visitPartitionRearrange, visitPOOptimizedForEach, visitPreCombinerLocalRearrange, visitProject, visitRegexp, visitSubtract, visitUserFunc |
Methods inherited from class org.apache.pig.impl.plan.PlanVisitor |
---|
popWalker, pushWalker, visit |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final String USER_COMPARATOR_MARKER
public static final String FILE_CONCATENATION_THRESHOLD
public static final String OPTIMISTIC_FILE_CONCATENATION
Constructor Detail |
---|
public MRCompiler(PhysicalPlan plan) throws MRCompilerException
MRCompilerException
public MRCompiler(PhysicalPlan plan, PigContext pigContext) throws MRCompilerException
MRCompilerException
Method Detail |
---|
public void aggregateScalarsFiles() throws PlanException, IOException
PlanException
IOException
public MROperPlan getMRPlan()
public PhysicalPlan getPlan()
getPlan
in class PlanVisitor<PhysicalOperator,PhysicalPlan>
public CompilationMessageCollector getMessageCollector()
public MROperPlan compile() throws IOException, PlanException, VisitorException
IOException
PlanException
VisitorException
public void connectSoftLink() throws PlanException, IOException
PlanException
IOException
public void visitSplit(POSplit op) throws VisitorException
visitSplit
in class PhyPlanVisitor
op
- - The split operator
VisitorException
public void visitLoad(POLoad op) throws VisitorException
visitLoad
in class PhyPlanVisitor
VisitorException
public void visitNative(PONative op) throws VisitorException
visitNative
in class PhyPlanVisitor
VisitorException
public void visitStore(POStore op) throws VisitorException
visitStore
in class PhyPlanVisitor
VisitorException
public void visitFilter(POFilter op) throws VisitorException
visitFilter
in class PhyPlanVisitor
VisitorException
public void visitCross(POCross op) throws VisitorException
visitCross
in class PhyPlanVisitor
VisitorException
public void visitStream(POStream op) throws VisitorException
visitStream
in class PhyPlanVisitor
VisitorException
public void visitLimit(POLimit op) throws VisitorException
visitLimit
in class PhyPlanVisitor
VisitorException
public void visitLocalRearrange(POLocalRearrange op) throws VisitorException
visitLocalRearrange
in class PhyPlanVisitor
VisitorException
public void visitCollectedGroup(POCollectedGroup op) throws VisitorException
visitCollectedGroup
in class PhyPlanVisitor
VisitorException
public void visitPOForEach(POForEach op) throws VisitorException
visitPOForEach
in class PhyPlanVisitor
VisitorException
public void visitGlobalRearrange(POGlobalRearrange op) throws VisitorException
visitGlobalRearrange
in class PhyPlanVisitor
VisitorException
public void visitPackage(POPackage op) throws VisitorException
visitPackage
in class PhyPlanVisitor
VisitorException
public void visitUnion(POUnion op) throws VisitorException
visitUnion
in class PhyPlanVisitor
VisitorException
public void visitFRJoin(POFRJoin op) throws VisitorException
visitFRJoin
in class PhyPlanVisitor
VisitorException
public void visitMergeCoGroup(POMergeCogroup poCoGrp) throws VisitorException
visitMergeCoGroup
in class PhyPlanVisitor
VisitorException
public void visitMergeJoin(POMergeJoin joinOp) throws VisitorException
visitMergeJoin
in class PhyPlanVisitor
VisitorException
public void visitDistinct(PODistinct op) throws VisitorException
visitDistinct
in class PhyPlanVisitor
VisitorException
public void visitSkewedJoin(POSkewedJoin op) throws VisitorException
visitSkewedJoin
in class PhyPlanVisitor
VisitorException
public void visitSort(POSort op) throws VisitorException
visitSort
in class PhyPlanVisitor
VisitorException
public void visitCounter(POCounter op) throws VisitorException
visitCounter
in class PhyPlanVisitor
VisitorException
public void visitRank(PORank op) throws VisitorException
visitRank
in class PhyPlanVisitor
VisitorException
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |