I have two on premises nodes and one azure node. I’m trying to create opensearch cluster with these 3 nodes. The two on prem servers were able to become a part of open search cluster but not the azure one. Azure vm is failing with “unable to discover master node”.
Can some throw light on this communication thing b/w different networks for opensearch? Are there any prerequisites thats needs to be in place before going for opensearch across networks?
14.16.25.201 14.16.25.200 are on prem servers
20.219.68.200 is azure server
configuration:
cluster.name: my-application
node.name: node-1
path.data: /var/lib/opensearch
path.logs: /var/log/opensearch
network.host: 0.0.0.0
http.port: 9200
discovery.seed_hosts: [“14.16.25.201”,“14.16.25.200” “20.219.68.200”]
cluster.initial_cluster_manager_nodes: [“node-1”, “node-2”, “node-3”]