Replies: 1 comment 1 reply
-
I'm not sure it is as simple as that. Some of the tasks might end up running on the same worker Pod (no idea if the worker Pod will open a connection per task or not - that would be more a Kafka question than Strimzi one). Additionally:
I'm afraid I do not have the exact answer for you ... but I think the idea that |
Beta Was this translation helpful? Give feedback.
-
I want to demystify the number of consumers to match 6 partitions.
KafkaConnect
replica:1
KafkaConnector
tasksMax: 6
Replica * tasksMax = consumers (Partitions)
1 * 6 = 6
I understand that this will create 6 consumers (tasks) in one worker pod.
Do I understand it right if I configure?
KafkaConnect
replica:6
KafkaConnector
tasksMax: 1
Replica * tasksMax = consumers (Partitions)
6 * 1 = 6
Or I can do
KafkaConnect
replica:6
KafkaConnector
tasksMax: 6
6*6 = ?
6 or 36 consumers based on max tasks
Or replicas are meant only for fault-tolerance
Thank you
Beta Was this translation helpful? Give feedback.
All reactions