Shrink ES Cluster size from 3 to 1 in ES 7.62

We are Running an Elasticsearch cluster with 3 nodes and we want to downsize the current cluster to run with only 1 node.

my cluster configs look like this.
node.master and node.data is true on all 3 nodes and cluster initial master nodes is all 3 as well

node.master: true
node.data: true

discovery.zen.ping.unicast.hosts: ["10.0.0.47", "10.0.0.92", "10.0.0.98"]
cluster.initial_master_nodes: ["10.0.0.47", "10.0.0.92", "10.0.0.98"]

Now we want to have only one node in the ES Cluster by taking away the other two nodes.
what is the graceful way of doing it without losing any data?

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.