[
https://issues.apache.org/jira/browse/FLINK-970?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Fabian Hueske resolved FLINK-970.
---------------------------------
Resolution: Fixed
Fixed with a3b02840dcbfb8ea2f1c448c06b8a9fbb1e3f65d
> Implement a first(n) operator
> -----------------------------
>
> Key: FLINK-970
> URL: https://issues.apache.org/jira/browse/FLINK-970
> Project: Flink
> Issue Type: New Feature
> Reporter: Timo Walther
> Assignee: Chesnay Schepler
> Priority: Minor
>
> It is only syntactic sugar, but I had many cases where I just needed the
> first element or the first 2 elements in a GroupReduce.
> E.g. Instead of
> {code:java}
> .reduceGroup(new GroupReduceFunction<String, String>() {
> @Override
> public void reduce(Iterator<String>
> values, Collector<String> out) throws Exception {
> out.collect(values.next());
> }
> })
> {code}
> {code:java}
> .first()
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)