Hello, I have a task to add 2 more nodes in a cluster. Currently we have 5 nodes in a cluster which are all data nodes. Elastic version 7.11.2.
Current discovery parameters set for cluster:
"discovery.zen.ping.unicast.hosts" which lists all 5 data nodes
"discovery.zen.minimum_master_nodes: 3"
My question is which parameters I should set on a new node to it join the cluster on the fly?
- Do I need to add "discovery.zen.ping.unicast.hosts" parameter which lists all nodes on a new node? Or "cluster.name" would be enough for a node to join the cluster?
- Do I need to change parameter "discovery.zen.ping.unicast.hosts" on current cluster to include new node?
Thanks!