Re: Forward Partitioning & same Parallelism: 1:1 communication?
Posted by
Márton Balassi on
URL: http://deprecated-apache-flink-user-mailing-list-archive.369.s1.nabble.com/Forward-Partitioning-same-Parallelism-1-1-communication-tp2373p2374.html
Dear Nica,
Yes, forward partitioning means that if subsequent operators share parallelism then the output of an upstream operator is sent to exactly one downstream operator. This makes sense for operators working on individual records, e.g. a typical map-filter pair, because as a consequence Flink may be able to collocate these operator pairs on the same physical machine.
Best,
Marton