can anyone help me yml file configuration for creating cluster of three nodes 1-master 2-data
You could have 3 master-data nodes itselfs which would help than 1 master and 2 data nodes..
If you still want it
Have the same cluster name for all the three nodes(same for all three nodes)
cluster.name: "mycluster"
in master node set
node.master: true
node.data : false
In data nodes set
node.master:false
node.data: true
https://www.elastic.co/guide/en/elasticsearch/reference/current/modules-node.html
This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.