你的浏览器禁用了JavaScript, 请开启后刷新浏览器获得更好的体验!
输入关键字进行搜索
搜索:
没有找到相关结果
Ombres
赞同来自:
CobraDan
要回复问题请先登录或注册
Cisco4321
2 个回复
Ombres
赞同来自:
{
"commands": [
{
"allocate_stale_primary": {
"index": "{indexName}",
"shard": 9,
"node": "",
"accept_data_loss": true
}
}
]
}
CobraDan
赞同来自:
curl -XPOST '<your-es-ip>:<es-http-port>/_cluster/reroute' --header "Content-Type: application/json" -d '{ "commands" :
[ { "allocate_empty_primary" :
{ "index" : "<待修复索引>", "shard" : <待修复分片号>, "node": "<需要修复至目标节点的node_name>" ,"accept_data_loss": true}
}]
}'
详细可以参考官方文档Cluster reroute API的用法