I have two nodes, but they are not on the same subnet.
Questions:
1) As I understand it, in a 2 node cluster, both should be set to master?
2) The config below is the right thing to do to let the nodes find each other? (Since nodes not on same subnet)
3) Client apps can attach to either node, and do reads and writes?
4) Is the proposed config below correct? (Can I specify "node.master: true" in both configs? Will this make the discovery happen?)
Proposed config:
Node 1:
cluster.name: mycluster
node.name: "node1"
node.master: true
node.data: true
discovery.zen.ping.multicast.enabled: false
discovery.zen.ping.unicast.hosts: ["192.168.100.103"] # IP of node2
Node 2:
cluster.name: mycluster
node.name: "node2"
node.master: true
node.data: true
discovery.zen.ping.multicast.enabled: false
discovery.zen.ping.unicast.hosts: ["192.168.101.103"] #IP of node1
2018 UPDATE:
We only use 3 and 5 node clusters now.