Hi, i have a problem with settings a client node.
I have a cluster with 8 nodes: 2 master - 2 client - 4 data.
but if i see my cluster stats i have this:
"nodes": {
"count": {
"total": 8,
"master_only": 2,
"data_only": 4,
"master_data": 0,
"client": 0
},
NO client node are set, but in my es.yml file i've set this:
cluster.name: elastic
node.name: client_01
node.master: false
node.data: false
bootstrap.mlockall: true
network.host: my_ip
http.port: 9200
http.compression: true
discovery.zen.minimum_master_nodes: 1
discovery.zen.ping.multicast.enabled: false
discovery.zen.ping.unicast.hosts: ["host_ip1","host_ip2","host_ip3","host_ip4"]
So my question is: Is there a particular configuration or particular
way to use a client node or i have an error in my config file?
Can someone help me pls?