V
- value typepublic interface Reducer<V>
Reducer
interface for combining two values of the same type into a new value.
In contrast to Aggregator
the result type must be the same as the input type.
The provided values can be either original values from input KeyValue
pair records or be a previously
computed result from apply(Object, Object)
.
Reducer
can be used to implement aggregation functions like sum, min, or max.
Modifier and Type | Method and Description |
---|---|
V |
apply(V value1,
V value2)
Aggregate the two given values into a single one.
|