Class DistinctOperator<T>

    • Constructor Detail

      • DistinctOperator

        public DistinctOperator​(DataSet<T> input,
                                org.apache.flink.api.common.operators.Keys<T> keys,
                                String distinctLocationName)
        Deprecated.
    • Method Detail

      • translateToDataFlow

        protected org.apache.flink.api.common.operators.SingleInputOperator<?,​T,​?> translateToDataFlow​(org.apache.flink.api.common.operators.Operator<T> input)
        Deprecated.
        Description copied from class: SingleInputOperator
        Translates this operation to a data flow operator of the common data flow API.
        Specified by:
        translateToDataFlow in class SingleInputOperator<T,​T,​DistinctOperator<T>>
        Parameters:
        input - The data flow operator that produces this operation's input data.
        Returns:
        The translated data flow operator.
      • setCombineHint

        @PublicEvolving
        public DistinctOperator<T> setCombineHint​(org.apache.flink.api.common.operators.base.ReduceOperatorBase.CombineHint strategy)
        Deprecated.
        Sets the strategy to use for the combine phase of the reduce.

        If this method is not called, then the default hint will be used. (ReduceOperatorBase.CombineHint.OPTIMIZER_CHOOSES)

        Parameters:
        strategy - The hint to use.
        Returns:
        The DistinctOperator object, for function call chaining.