Class PlanUnwrappingSortedGroupCombineOperator<IN,​OUT,​K1,​K2>

  • All Implemented Interfaces:
    org.apache.flink.util.Visitable<org.apache.flink.api.common.operators.Operator<?>>

    @Internal
    public class PlanUnwrappingSortedGroupCombineOperator<IN,​OUT,​K1,​K2>
    extends org.apache.flink.api.common.operators.base.GroupCombineOperatorBase<org.apache.flink.api.java.tuple.Tuple3<K1,​K2,​IN>,​OUT,​org.apache.flink.api.common.functions.GroupCombineFunction<org.apache.flink.api.java.tuple.Tuple3<K1,​K2,​IN>,​OUT>>
    A reduce operator that takes 3-tuples (groupKey, sortKey, value), and applies the sorted partial group reduce operation only on the unwrapped values.
    • Field Summary

      • Fields inherited from class org.apache.flink.api.common.operators.SingleInputOperator

        input
      • Fields inherited from class org.apache.flink.api.common.operators.AbstractUdfOperator

        broadcastInputs, userFunction
      • Fields inherited from class org.apache.flink.api.common.operators.Operator

        compilerHints, name, operatorInfo, parameters
    • Constructor Summary

      Constructors 
      Constructor Description
      PlanUnwrappingSortedGroupCombineOperator​(org.apache.flink.api.common.functions.GroupCombineFunction<IN,​OUT> udf, org.apache.flink.api.common.operators.Keys.SelectorFunctionKeys<IN,​K1> groupingKey, org.apache.flink.api.common.operators.Keys.SelectorFunctionKeys<IN,​K2> sortingKey, String name, org.apache.flink.api.common.typeinfo.TypeInformation<OUT> outType, org.apache.flink.api.common.typeinfo.TypeInformation<org.apache.flink.api.java.tuple.Tuple3<K1,​K2,​IN>> typeInfoWithKey)  
    • Method Summary

      • Methods inherited from class org.apache.flink.api.common.operators.base.GroupCombineOperatorBase

        executeOnCollections, getGroupOrder, setGroupOrder
      • Methods inherited from class org.apache.flink.api.common.operators.SingleInputOperator

        accept, addInput, addInput, clearInputs, getInput, getKeyColumns, getNumberOfInputs, getOperatorInfo, getSemanticProperties, setInput, setInput, setInputs, setSemanticProperties
      • Methods inherited from class org.apache.flink.api.common.operators.AbstractUdfOperator

        asArray, emptyClassArray, getBroadcastInputs, getUserCodeWrapper, setBroadcastVariable, setBroadcastVariables
      • Methods inherited from class org.apache.flink.api.common.operators.Operator

        createUnionCascade, createUnionCascade, createUnionCascade, getCompilerHints, getMinResources, getName, getParallelism, getParameters, getPreferredResources, setName, setParallelism, setParameter, setParameter, setParameter, setResources, toString
    • Constructor Detail

      • PlanUnwrappingSortedGroupCombineOperator

        public PlanUnwrappingSortedGroupCombineOperator​(org.apache.flink.api.common.functions.GroupCombineFunction<IN,​OUT> udf,
                                                        org.apache.flink.api.common.operators.Keys.SelectorFunctionKeys<IN,​K1> groupingKey,
                                                        org.apache.flink.api.common.operators.Keys.SelectorFunctionKeys<IN,​K2> sortingKey,
                                                        String name,
                                                        org.apache.flink.api.common.typeinfo.TypeInformation<OUT> outType,
                                                        org.apache.flink.api.common.typeinfo.TypeInformation<org.apache.flink.api.java.tuple.Tuple3<K1,​K2,​IN>> typeInfoWithKey)