如何从ES群集中​​删除节点

时间:2014-10-14 07:06:23

标签: elasticsearch

Wowee ......如何从ES中获取节点?

我有4个节点,想删除3个。

在我希望保留的节点上,我运行了以下内容:

curl -XPUT localhost:9200/_cluster/settings -d '{"transient" : {"cluster.routing.allocation.exclude._ip" : "172.31.6.204"}}';echo

curl -XPUT localhost:9200/_cluster/settings -d '{"transient" : {"cluster.routing.allocation.exclude._ip" : "172.31.6.205"}}';echo

curl -XPUT localhost:9200/_cluster/settings -d '{"transient" : {"cluster.routing.allocation.exclude._ip" : "172.31.6.206"}}';echo

现在我的群集运行状况如下:

curl localhost:9200/_cluster/health?pretty=true
{
  "cluster_name" : "elasticsearch",
  "status" : "red",
  "timed_out" : false,
  "number_of_nodes" : 1,
  "number_of_data_nodes" : 1,
  "active_primary_shards" : 2,
  "active_shards" : 2,
  "relocating_shards" : 0,
  "initializing_shards" : 0,
  "unassigned_shards" : 8

我该如何解决?删除节点的正确方法是什么?

感谢上帝,这是在开发...

由于

1 个答案:

答案 0 :(得分:0)

退役cluster.routing.allocation.exclude._ip 良好! 你遇到的问题是你没有给每个时间分片移动到剩余的节点。

您可以逐个重播相同的命令,但要注意使用某些监控插件迁移分片ElasticHQKopf