更新时间:2024-08-15 GMT+08:00
Elasticsearch集群某一节点分配不到shard
解决方案
- 使用GET _cluster/allocation/explain?pretty 查看未分配shard。
- 在console上,选择“allocation.enable”,将“none”改为“all”。
- 如果没有cerebro,请执行如下命令:
curl -X PUT "http://内网ip:9200/_cluster/settings" -H 'Content-Type: application/json' -d'{"persistent":{"cluster.routing.allocation.enable": "all"}}'
父主题: 功能使用类