Uses of Class
org.apache.flink.table.planner.plan.nodes.exec.InputProperty.RequiredDistribution
Packages that use InputProperty.RequiredDistribution
-
Uses of InputProperty.RequiredDistribution in org.apache.flink.table.planner.plan.nodes.exec
Modifier and TypeClassDescriptionstatic classThe input will read the records whose keys hash to a particular hash value.static classA special distribution which indicators the data distribution is the same as its input. 'Fields in org.apache.flink.table.planner.plan.nodes.exec declared as InputProperty.RequiredDistributionModifier and TypeFieldDescriptionstatic final InputProperty.RequiredDistributionInputProperty.ANY_DISTRIBUTIONThe input does not require any specific data distribution.static final InputProperty.RequiredDistributionInputProperty.BROADCAST_DISTRIBUTIONThe input will read all records for each parallelism of the target node.static final InputProperty.RequiredDistributionInputProperty.SINGLETON_DISTRIBUTIONThe input will read all records, and the parallelism of the target node must be 1.static final InputProperty.RequiredDistributionInputProperty.UNKNOWN_DISTRIBUTIONReturns a place-holder required distribution.Methods in org.apache.flink.table.planner.plan.nodes.exec that return InputProperty.RequiredDistributionModifier and TypeMethodDescriptionInputProperty.KeepInputAsIsDistribution.getInputDistribution()InputProperty.getRequiredDistribution()Methods in org.apache.flink.table.planner.plan.nodes.exec with parameters of type InputProperty.RequiredDistributionModifier and TypeMethodDescriptionInputProperty.keepInputAsIsDistribution(InputProperty.RequiredDistribution inputDistribution, boolean strict) A special distribution which indicators the data distribution is the same as its input.ExecEdge.Builder.requiredDistribution(InputProperty.RequiredDistribution requiredDistribution) InputProperty.Builder.requiredDistribution(InputProperty.RequiredDistribution requiredDistribution) Constructors in org.apache.flink.table.planner.plan.nodes.exec with parameters of type InputProperty.RequiredDistributionModifierConstructorDescriptionInputProperty(InputProperty.RequiredDistribution requiredDistribution, InputProperty.DamBehavior damBehavior, int priority)