Re: cogroup
Posted by
Michele Bertoni on
URL: http://deprecated-apache-flink-user-mailing-list-archive.369.s1.nabble.com/cogroup-tp1839p1842.html
thanks both for answering,
that’s what i expected
I was using join at first but sadly i had to move from join to cogroup because I need outer join
the alternative to the cogroup is to “complete” the inner join extracting from the original dataset what did not matched in the cogroup by difference but I don’t think it is convenient
Il giorno 29/giu/2015, alle ore 17:58, Fabian Hueske <
[hidden email]> ha scritto:
If you just want to do the pairwise comparison try join().
Join is an inner join and will give you all pairs of elements with matching keys.
For CoGroup, there is no other way than collecting one side in memory.
Best, Fabian