Seeking advice if Multiple Clusters are supported with Community Edition via XDCR with bidirectional replication and are there options to connect and work with Multiple Clusters via .NET SDK.
Is it possible to setup a load-balanced multi-cluster hostname record for use against the Cluster connection string instead of defining all the seed nodes IP address or hostnames across all the Multi-Clusters with bidirectional replication?
Example:
Instead of:
var cluster = await Cluster.ConnectAsync(“seednodeAcluster1.example.com,seednodeBcluster2.example.com”, “username”, “password”)
is it possible with:
var cluster = await Cluster.ConnectAsync(“loadbalanced-mclusterhostname.example.com”, “username”, “password”)
where
loadbalanced-mclusterhostname.example.com is network load-balanced and will resolve to either
seednodeAcluster1.example.com
seednodeBcluster2.example.com
Appreciate any advice or information.
Thank you.