-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 7 replies
-
To make sure I understand the question, you are asking that if you have 3 Strimzi-managed Kafka clusters:
If it is possible for |
Beta Was this translation helpful? Give feedback.
-
In fact, after verification, I found that even if the target cluster of target.cluster.* is specified as an additional third-party cluster (a cluster different from the Kafka cluster that stores the Kafka Connect metadata), it will not take effect. It seems that the Kafka cluster where the target is written and the cluster that stores the Kafka Connect metadata must be the same |
Beta Was this translation helpful? Give feedback.
It's technically possible to have Connect use cluster B and run the MirrorMaker connectors to mirror data from A to C. However it's not a recommended setup, especially if you're not very familiar with Connect, as the configuration is a bit tricky. Keep in mind that this comes with a number of gotchas. For example if cluster B has an issue, it compromises your mirroring while A and C are running fine. Also it's recommended to run Connect near the target cluster, by connecting it to another cluster you have more potential issues. So I'd be sure you have a very good reason before setting this up.
If you really want to do so, you need to override the Connect internal client connection configu…