I am running flink on the kubernetes.
Following are the configurations of server:
server - 1: 4cpu, 16gb RAM
server - 2: 2cpu, 8gb RAM
server - 3: 2cpu, 8gb RAM
By using the above configurations how to set the parallelism and slots. I want to run 3 taskmanger. Currently I have provided below configurations. Is it correct?
taskmanager.numberOfTaskSlots: 2
parallelism.default: 3
As per the understanding each cpu will be treated as 1 slot. should it be like numberOfTaskSlots has to be configure 2, because that is available for 3 taskmanager.
parallelism.default: 3
because i am using number of taskmanager as 3.