| Package | Description |
|---|---|
| org.apache.flink.api.java | |
| org.apache.flink.api.java.operators |
| Modifier and Type | Method and Description |
|---|---|
<R> GroupReduceOperator<T,R> |
DataSet.reduceGroup(GroupReduceFunction<T,R> reducer)
Applies a GroupReduce transformation on a non-grouped
DataSet.The transformation calls a RichGroupReduceFunction once with the full DataSet. |
| Modifier and Type | Method and Description |
|---|---|
<R> GroupReduceOperator<T,R> |
UnsortedGrouping.reduceGroup(GroupReduceFunction<T,R> reducer)
Applies a GroupReduce transformation on a grouped
DataSet.The transformation calls a RichGroupReduceFunction for each group of the DataSet. |
<R> GroupReduceOperator<T,R> |
SortedGrouping.reduceGroup(GroupReduceFunction<T,R> reducer)
Applies a GroupReduce transformation on a grouped and sorted
DataSet.The transformation calls a RichGroupReduceFunction for each group of the DataSet. |
Copyright © 2014 The Apache Software Foundation. All rights reserved.