Replies: 1 comment 4 replies
-
You mean to have both Mirror Maker 2 clusters running in the internal AKS cluster and connecting to the external AKS cluster from there instead of having one of them sit in the external AKS cluster and connect to the internal AKS cluster? Did I got it right? That should be possible. The recommended way is to run the Mirror Maker 2 as close to the target cluster as possible as that helps to minimize the duplicates etc. But you can run it on the side of the source cluster as well - especially if the 2 AKS clusters are in the same region and have a good latency / networking between them. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello to Strimzi,
we are currently running bidirectional mirroring between two Kafka clusters (they are running in different AKS clusters - one AKS/Kafka for internal and second one for external purposes) using two MM2s. Each direction has own MM2 instance running in the target Kafka cluster (this arrangement should be compliant with the setup we found in your docu). Everything is working properly so far but our Customer wants us to avoid establishing the connectivity from external cluster (i.e. to avoid starting TCP session from ext cluster). The question is if it's possibile to setup two mirrors on single MM2 instance (running in the internal AKS cluster) - i.e. to have something like this setup:
apiVersion: kafka.strimzi.io/v1alpha1
kind: KafkaMirrorMaker2
spec:
connectCluster: "int-cluster"
clusters:
bootstrapServers: int-bootstrap-server
bootstrapServers: ext-bootstrap-server-2
mirrors:
targetCluster: "ext-cluster"
targetCluster: "int-cluster"
I was already looking around and found only following discussion threads dealing with similar but not same use cases:
As some time last since those discussions I would rather ask if above describe setup would be possible. Thanks
Jan
Beta Was this translation helpful? Give feedback.
All reactions