I am using ES 7.10.1, and I am reading https://www.elastic.co/guide/en/elasticsearch/reference/current/important-settings.html#unicast.hosts.
I have 5 master nodes (node.master: true node.data: false) and 20 data nodes(node.master: false node.data: true).
I got following four questions:
Should both
discovery.seed_hostsandcluster.initial_master_nodesbe specified with themasternodes? I mean, could I specify the data node for these two configurations?Since I have 5 master nodes in my case, how many nodes should I specify for these two configurations. I think I don't have to list all of these 5 nodes in these configurations?
It looks to me that
discovery.seed_hostsis like old version elastic search'sdiscovery.zen.ping.unicast.hosts?It looks to me that
cluster.initial_master_nodesis like old version elastics search'sdiscovery.zen.minimum_master_nodes?
Thanks!