es集群全停全起后集群red无法恢复,出现elasticsearch unassigned错误

编程入门 行业动态 更新时间:2024-10-22 14:00:36

es<a href=https://www.elefans.com/category/jswz/34/1771240.html style=集群全停全起后集群red无法恢复,出现elasticsearch unassigned错误"/>

es集群全停全起后集群red无法恢复,出现elasticsearch unassigned错误

问题描述:elasticsearch 重启后出现了elasticsearch Unassigned 异常,出现这个问题的原因是表明该数据分片的异常,那么需要重启这个数据分片。

  • 解决方案如下:

1、首先使用命令行,查看目前有哪些es节点分片有问题。

curl -s "http://localhost:9200/_cat/shards" | grep UNASSIGNED

2、查看master节点的唯一标识

curl 'localhost:9200/_nodes/process?pretty'

3、逐个修复每一个节点分片数据。

改:index、shard、node

inde:需要修复的索引的名字

shard:shard的编号

node:master节点的唯一标识

curl -XPOST 'localhost:9200/_cluster/reroute' -d '{
"commands" : [ {
"allocate" : {
"index" : "test_index",
"shard" : 0,
"node" : "es01-test",
"allow_primary" : true
}
}
] }'

更多推荐

es集群全停全起后集群red无法恢复,出现elasticsearch unassigned错误

本文发布于:2023-07-28 21:52:53,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1329682.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:集群   错误   全停全起后   es   unassigned

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!