Hi
Can some one suggest me how to define the cluster details (ip's) and the data replication values in the new elasticsearch.yml, the below is my present yml
---------------------------------- Cluster -----------------------------------
Use a descriptive name for your cluster:
cluster.name: mycluster
------------------------------------ Node ------------------------------------
Use a descriptive name for the node:
node.name: node-1
Add custom attributes to the node:
#node.attr.rack: r1
--------------------------------- Discovery ----------------------------------
Pass an initial list of hosts to perform discovery when new node is started:
The default list of hosts is ["127.0.0.1", "[::1]"]
discovery.zen.ping.unicast.hosts: ["ip1", "ip2"]
Prevent the "split brain" by configuring the majority of nodes (total number of master-eligible nodes / 2 + 1):
#discovery.zen.minimum_master_nodes:
Thanks