@Internal public class ComparableAggregator<T> extends AggregationFunction<T>
AggregationFunction
that computes values based on comparisons of Comparables
.AggregationFunction.AggregationType
Constructor and Description |
---|
ComparableAggregator(int positionToAggregate,
TypeInformation<T> typeInfo,
AggregationFunction.AggregationType aggregationType,
boolean first,
ExecutionConfig config) |
ComparableAggregator(int positionToAggregate,
TypeInformation<T> typeInfo,
AggregationFunction.AggregationType aggregationType,
ExecutionConfig config) |
ComparableAggregator(String field,
TypeInformation<T> typeInfo,
AggregationFunction.AggregationType aggregationType,
boolean first,
ExecutionConfig config) |
Modifier and Type | Method and Description |
---|---|
T |
reduce(T value1,
T value2)
The core method of ReduceFunction, combining two values into one value of the same type.
|
public ComparableAggregator(int positionToAggregate, TypeInformation<T> typeInfo, AggregationFunction.AggregationType aggregationType, ExecutionConfig config)
public ComparableAggregator(int positionToAggregate, TypeInformation<T> typeInfo, AggregationFunction.AggregationType aggregationType, boolean first, ExecutionConfig config)
public ComparableAggregator(String field, TypeInformation<T> typeInfo, AggregationFunction.AggregationType aggregationType, boolean first, ExecutionConfig config)
public T reduce(T value1, T value2) throws Exception
ReduceFunction
value1
- The first value to combine.value2
- The second value to combine.Exception
- This method may throw exceptions. Throwing an exception will cause the
operation to fail and may trigger recovery.Copyright © 2014–2024 The Apache Software Foundation. All rights reserved.