Reading through the multi-dc schema registry setup spawned some questions and I couldn't find a better place to ask than here. Let me know if I should repost this elsewhere.
For architecture, I have:
schema.registry.url in the Kafka REST Proxy configuration? Does that variable support comma separated strings of SR instances or should I have a round-robin DNS to point at an SR instance randomly?master.eligibility=true cause any problems operationally?@cwscribner You can use our community mailing list for questions like this.
master.eligibility=true. This doesn't mean you'll have multiple masters, it's just a flag to control whether that instance _can_ become master. The case where you'll want to turn this off is if you have one data center that has your primary cluster, but you want to replicate the same schema data to another data center. In that case, the instances in the secondary data center should use master.eligibility=false since they are only intended to be mirrors.Perfect, thanks for the response!
Most helpful comment
@cwscribner You can use our community mailing list for questions like this.
master.eligibility=true. This doesn't mean you'll have multiple masters, it's just a flag to control whether that instance _can_ become master. The case where you'll want to turn this off is if you have one data center that has your primary cluster, but you want to replicate the same schema data to another data center. In that case, the instances in the secondary data center should usemaster.eligibility=falsesince they are only intended to be mirrors.