Configuration to add data node to Elastic production cluster

Hi,

If we want to add/extend cluster size is this sufficient to modify only elasticsearch.yml file on new node.or Do we need to modify configuration on existing master nodes as well?What we mean is only lets say node-4 is new data node
On data node
discovery.zen.ping.unicast.hosts: ["node-1","node-2",node-3","node-4"] is sufficient ?on master nodes as well we need to made this change.

Thanks,
Vivek

If the new node is not master-eligible (i.e. has node.master: false) then you do not need to adjust discovery.zen.ping.unicast.hosts on any existing nodes, since this setting only needs to list the master-eligible nodes in the cluster.

Hi,

Thanks for quick reply.Since it is only data node node.master: false,node.ingest:false.So even on data node node-4 configuration
discovery.zen.ping.unicast.hosts: ["node-1","node-2",node-3"] is enough right...

Regards,
Vivek

Yes, that's right.

Sure...Thanks...

1 Like

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.