Interface FlinkMetadata.FlinkDistribution
- All Superinterfaces:
org.apache.calcite.rel.metadata.Metadata
- Enclosing class:
- FlinkMetadata
public static interface FlinkMetadata.FlinkDistribution
extends org.apache.calcite.rel.metadata.Metadata
Metadata about how a relational expression is distributed.
If you are an operator consuming a relational expression, which subset of the rows are you seeing? You might be seeing all of them (BROADCAST or SINGLETON), only those whose key column values have a particular hash code (HASH) or only those whose column values have particular values or ranges of values (RANGE).
When a relational expression is partitioned, it is often partitioned among nodes, but it may be partitioned among threads running on the same node.
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic interfaceHandler API. -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final org.apache.calcite.rel.metadata.MetadataDef<FlinkMetadata.FlinkDistribution>static final Method -
Method Summary
Modifier and TypeMethodDescriptionFlinkRelDistributionDetermines how the rows are distributed.Methods inherited from interface org.apache.calcite.rel.metadata.Metadata
rel
-
Field Details
-
METHOD
-
DEF
-
-
Method Details
-
flinkDistribution
FlinkRelDistribution flinkDistribution()Determines how the rows are distributed.
-