public interface RelOptPlanner
RelOptPlanner is a query optimizer: it transforms a relational
expression into a semantically equivalent relational expression, according to
a given set of rules and a cost model.| Modifier and Type | Interface and Description |
|---|---|
static class |
RelOptPlanner.CannotPlanException
Thrown by
findBestExp(). |
static interface |
RelOptPlanner.Executor
Can reduce expressions, writing a literal for each into a list.
|
| Modifier and Type | Method and Description |
|---|---|
void |
addLattice(RelOptLattice lattice)
Defines a lattice.
|
void |
addListener(RelOptListener newListener)
Adds a listener to this planner.
|
void |
addMaterialization(RelOptMaterialization materialization)
Defines a pair of relational expressions that are equivalent.
|
boolean |
addRelTraitDef(RelTraitDef relTraitDef)
Registers a rel trait definition.
|
boolean |
addRule(RelOptRule rule)
Registers a rule.
|
RelNode |
changeTraits(RelNode rel,
RelTraitSet toTraits)
Changes a relational expression to an equivalent one with a different set
of traits.
|
RelOptPlanner |
chooseDelegate()
Negotiates an appropriate planner to deal with distributed queries.
|
void |
clear()
Removes all internal state, including all rules.
|
void |
clearRelTraitDefs()
Clear all the registered RelTraitDef.
|
RelTraitSet |
emptyTraitSet()
Creates an empty trait set.
|
RelNode |
ensureRegistered(RelNode rel,
RelNode equivRel)
Registers a relational expression if it is not already registered.
|
RelNode |
findBestExp()
Finds the most efficient expression to implement this query.
|
Context |
getContext()
Provides the Context created when this planner was constructed.
|
RelOptCost |
getCost(RelNode rel)
Computes the cost of a RelNode.
|
RelOptCostFactory |
getCostFactory()
Returns the factory that creates
RelOptCosts. |
RelOptPlanner.Executor |
getExecutor() |
RelOptLattice |
getLattice(RelOptTable table)
Retrieves a lattice, given its star table.
|
long |
getRelMetadataTimestamp(RelNode rel)
Gets a timestamp for a given rel's metadata.
|
List<RelTraitDef> |
getRelTraitDefs()
Returns the list of active trait types.
|
RelNode |
getRoot()
Returns the root node of this query.
|
boolean |
isRegistered(RelNode rel)
Determines whether a relational expression has been registered.
|
void |
onCopy(RelNode rel,
RelNode newRel)
Called when a relational expression is copied to a similar expression.
|
RelNode |
register(RelNode rel,
RelNode equivRel)
Registers a relational expression in the expression bank.
|
void |
registerClass(RelNode node)
Registers a class of RelNode.
|
void |
registerMetadataProviders(List<RelMetadataProvider> list)
Gives this planner a chance to register one or more
RelMetadataProviders in the chain which will be used to answer
metadata queries. |
void |
registerSchema(RelOptSchema schema)
Tells this planner that a schema exists.
|
boolean |
removeRule(RelOptRule rule)
Removes a rule.
|
void |
setCancelFlag(CancelFlag cancelFlag)
Installs the cancellation-checking flag for this planner.
|
void |
setExecutor(RelOptPlanner.Executor executor)
Sets the object that can execute scalar expressions.
|
void |
setImportance(RelNode rel,
double importance)
Sets the importance of a relational expression.
|
void |
setRoot(RelNode rel)
Sets the root node of this query.
|
void |
setRuleDescExclusionFilter(Pattern exclusionFilter)
Sets the exclusion filter to use for this planner.
|
static final Logger LOGGER
void setRoot(RelNode rel)
rel - Relational expressionRelNode getRoot()
boolean addRelTraitDef(RelTraitDef relTraitDef)
RelTraitDef has already
been registered, does nothing.Collection.add(E)void clearRelTraitDefs()
List<RelTraitDef> getRelTraitDefs()
void clear()
boolean addRule(RelOptRule rule)
If the rule has already been registered, does nothing.
This method determines if the given rule is a
ConverterRule and pass the
ConverterRule to all
registered RelTraitDef
instances.
Collection.add(E)boolean removeRule(RelOptRule rule)
Collection.remove(Object)Context getContext()
void setRuleDescExclusionFilter(Pattern exclusionFilter)
exclusionFilter - pattern to match for exclusion; null to disable
filteringvoid setCancelFlag(CancelFlag cancelFlag)
cancelFlag - flag which the planner should periodically checkRelNode changeTraits(RelNode rel, RelTraitSet toTraits)
rel - Relational expression (may or may not have been registered; must
not have the desired traits)toTraits - Trait set to convert the relational expression toRelOptPlanner chooseDelegate()
void addMaterialization(RelOptMaterialization materialization)
Typically tableRel is a
LogicalTableScan representing a
table that is a materialized view and queryRel is the SQL
expression that populates that view. The intention is that
tableRel is cheaper to evaluate and therefore if the query being
optimized uses (or can be rewritten to use) queryRel as a
sub-expression then it can be optimized by using tableRel
instead.
void addLattice(RelOptLattice lattice)
The lattice may have materializations; it is not necessary to call
addMaterialization(org.apache.calcite.plan.RelOptMaterialization) for these; they are registered implicitly.
RelOptLattice getLattice(RelOptTable table)
RelNode findBestExp()
RelOptPlanner.CannotPlanException - if cannot find a planRelOptCostFactory getCostFactory()
RelOptCosts.RelOptCost getCost(RelNode rel)
RelMetadataQuery.getCumulativeCost(org.apache.calcite.rel.RelNode).rel - expression of interestRelNode register(RelNode rel, RelNode equivRel)
After it has been registered, you may not modify it.
The expression must not already have been registered. If you are not
sure whether it has been registered, call
ensureRegistered(RelNode, RelNode).
rel - Relational expression to register (must not already be
registered)equivRel - Relational expression it is equivalent to (may be null)RelNode ensureRegistered(RelNode rel, RelNode equivRel)
If equivRel is specified, rel is placed in the same
equivalence set. It is OK if equivRel has different traits;
rel will end up in a different subset of the same set.
It is OK if rel is a subset.
rel - Relational expression to registerequivRel - Relational expression it is equivalent to (may be null)boolean isRegistered(RelNode rel)
rel - expression to testvoid registerSchema(RelOptSchema schema)
void addListener(RelOptListener newListener)
newListener - new listener to be notified of eventsvoid registerMetadataProviders(List<RelMetadataProvider> list)
RelMetadataProviders in the chain which will be used to answer
metadata queries.
Planners which use their own relational expressions internally to represent concepts such as equivalence classes will generally need to supply corresponding metadata providers.
list - receives planner's custom providers, if anylong getRelMetadataTimestamp(RelNode rel)
CachingRelMetadataProvider to decide whether cached metadata has
gone stale.rel - rel of interestvoid setImportance(RelNode rel, double importance)
An important use of this method is when a RelOptRule has
created a relational expression which is indisputably better than the
original relational expression. The rule set the original relational
expression's importance to zero, to reduce the search space. Pending rule
calls are cancelled, and future rules will not fire.
rel - Relational expressionimportance - Importancevoid registerClass(RelNode node)
node - Relational expressionRelTraitSet emptyTraitSet()
The empty trait set acts as the prototype (a kind of factory) for all subsequently created trait sets.
void setExecutor(RelOptPlanner.Executor executor)
RelOptPlanner.Executor getExecutor()
Copyright © 2012–2015 The Apache Software Foundation. All rights reserved.