Hi,
I have Elasticsearch 6.3 OSS 3-node cluster. One master and 2 data nodes. I added another data node to the cluster. Then, removed it using the following API call.
curl -XPUT localhost:9200/_cluster/settings -H 'Content-Type: application/json' -d '{
"transient" :{
"cluster.routing.allocation.exclude._ip" : "x.x.x.x"
}
}'
The number of cluster nodes still remain 4 instead of 3. Am i missing some step to remove a node from cluster?