curl -XGET http://localhost:9200/_nodes/process?pretty
通过上面的接口获取节点的唯一标识
``` curl -XGET http://localhost:9200/_cat/shards ``` test索引下的0、2分片显示UNASSIGNED,就需要修复一下了 ``` curl -XPOST 'localhost:9200/_cluster/reroute' -d '{ "commands" : [ { "allocate" : { "index" : "test", "shard" : 0, "node" : "O5edyCTiRhWewb-xlV55-w", "allow_primary" : true } }] }' ``` 修复的是test索引下编号为0的分片 node是节点的标识 index是索引名称 shard是分片编号
欢迎来到这里!
我们正在构建一个小众社区,大家在这里相互信任,以平等 • 自由 • 奔放的价值观进行分享交流。最终,希望大家能够找到与自己志同道合的伙伴,共同成长。
注册 关于