If I have 3 master nodes and 1 client node, what should the "discovery.zen.ping.unicast.hosts" setting be in elasticsearch.yml? Say I have ip_master0, ip_master1, ip_master2, and ip_client
Should it be this?
For the master nodes. discovery.zen.ping.unicast.hosts: ["ip_master0", "ip_master1", "ip_master2"]
For the client node? discovery.zen.ping.unicast.hosts: ["ip_master0", "ip_master1", "ip_master2", "ip_client"]
Or should it be discovery.zen.ping.unicast.hosts: ["ip_master0", "ip_master1", "ip_master2", "ip_client"] for ALL nodes?
Client node is a node which belongs to the cluster. It has the cluster state from the master node.
In the cluster state, you have the list of all nodes.
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant
logo are trademarks of the
Apache Software Foundation
in the United States and/or other countries.