Class CardinalityEstimationImpl
java.lang.Object
se.liu.ida.hefquin.engine.queryproc.impl.poptimizer.cardinality.CardinalityEstimationImpl
- All Implemented Interfaces:
CardinalityEstimation
- Direct Known Subclasses:
MinBasedCardinalityEstimationImpl
This class implements an approach to cardinality estimation that is based
on the following two ideas: First, for leaf nodes in the given plans, which
are request operators, the implementation issues cardinality requests to
the respective federation members. Second, for joins, the implementation
uses the join cardinality estimation approach from the Lusail paper, which
is based on variable-specific cardinality estimates. To functionality to
obtain the variable-specific cardinality estimates is implemented separately
(see
VarSpecificCardinalityEstimation
.-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprotected class
protected class
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected final Map<PhysicalPlan,
CompletableFuture<Integer>> protected final FederationAccessManager
protected final VarSpecificCardinalityEstimation
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionAsynchronous method that initiates a process to estimate the cardinality of the result that will be produced by the given plan.
-
Field Details
-
cache
-
fedAccessMgr
-
vsCardEstimator
-
-
Constructor Details
-
CardinalityEstimationImpl
-
-
Method Details
-
initiateCardinalityEstimation
Description copied from interface:CardinalityEstimation
Asynchronous method that initiates a process to estimate the cardinality of the result that will be produced by the given plan. The actual estimate can then be obtained by using theget()
method of the returned CompletableFuture. For some helper methods that wrap calls to this method and provide its functionality as synchronous functions, refer toCardinalityEstimationUtils
.- Specified by:
initiateCardinalityEstimation
in interfaceCardinalityEstimation
-
_initiateCardinalityEstimation
-