Re: tasks running in parallel beyond configured parallelism/slots
Posted by
Aljoscha Krettek on
URL: http://deprecated-apache-flink-user-mailing-list-archive.369.s1.nabble.com/tasks-running-in-parallel-beyond-configured-parallelism-slots-tp11540p11576.html
Hi,
Flink operators will not always (in fact almost never) run in a single slot. Mostly the whole parallel sub-slice of a pipeline can run in one slot, so in your case you get three parallel instances for every operator in your topology and then one instance of each operator will sit in a slot.
Cheers,
Aljoscha
Hi,
I am new to Flink and bit confused about the execution pipeline of my Flink job. I run it on cluster of three task managers (flink 1.1.2) each configured with just single slot. I submit my job with parallelism set to 3.
My confusion is how comes all the parallel operations in the second column (10 operations) are being executed at the same time if there should be capacity for max of 3 running at once? Also they are all executed mostly on same node while the others are idle.
Thanks for anything useful,
Antony.