Class CostModelBasedGreedyJoinPlanOptimizerImpl.GreedyEnumerationAlgorithm
java.lang.Object
se.liu.ida.hefquin.engine.queryproc.impl.poptimizer.simple.CostModelBasedGreedyJoinPlanOptimizerImpl.GreedyEnumerationAlgorithm
- All Implemented Interfaces:
JoinPlanOptimizerBase.EnumerationAlgorithm
- Enclosing class:
- CostModelBasedGreedyJoinPlanOptimizerImpl
protected class CostModelBasedGreedyJoinPlanOptimizerImpl.GreedyEnumerationAlgorithm
extends Object
implements JoinPlanOptimizerBase.EnumerationAlgorithm
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected PhysicalPlan
addNextBestJoin
(PhysicalPlan currentPlan) Creates a binary join plan with the given plan as left child and one of the remaining subplans (seesubplans
) as the right child.protected PhysicalPlan
Compares all available subplans (seesubplans
) in terms of their respective costs (as estimated by using theCostModelBasedGreedyJoinPlanOptimizerImpl.costModel
) and returns the one with the lowest estimated cost.protected Map<Integer,
List<PhysicalPlan>> createNextPossiblePlans
(PhysicalPlan currentPlan) Creates all possible binary join plans with the given plan as left child and one of the remaining subplans (seesubplans
) as the right child, as well as plans with unary (gpAdd-based) joins with the given plan as the child.
-
Field Details
-
subplans
-
-
Constructor Details
-
GreedyEnumerationAlgorithm
-
-
Method Details
-
getResultingPlan
- Specified by:
getResultingPlan
in interfaceJoinPlanOptimizerBase.EnumerationAlgorithm
- Throws:
PhysicalOptimizationException
-
chooseFirstSubplan
Compares all available subplans (seesubplans
) in terms of their respective costs (as estimated by using theCostModelBasedGreedyJoinPlanOptimizerImpl.costModel
) and returns the one with the lowest estimated cost.- Throws:
PhysicalOptimizationException
-
addNextBestJoin
protected PhysicalPlan addNextBestJoin(PhysicalPlan currentPlan) throws PhysicalOptimizationException Creates a binary join plan with the given plan as left child and one of the remaining subplans (seesubplans
) as the right child. The subplan that is picked to be the right child is the one for which the returned plan has the minimum cost among all plans that can be constructed in this way.- Throws:
PhysicalOptimizationException
-
createNextPossiblePlans
Creates all possible binary join plans with the given plan as left child and one of the remaining subplans (seesubplans
) as the right child, as well as plans with unary (gpAdd-based) joins with the given plan as the child. In the returned map, the index that each of these remaining subplans has withinsubplans
is mapped to the collection of possible join plans created using this subplan.
-