阿里云 - Elasticsearch磁盘锁定

2022-03-29

当ES集群各数据节点磁盘使用率超过95%后,会触发ES自动保护机制对索引设置过只读参数引起。
正常情况下需要先清理不需要的索引或历史过期数据,或做强制磁盘扩容腾出磁盘空间,将磁盘使用率降到85%以下后,然后再执行上面命令恢复ES写入功能。

PUT _all/_settings
{
   "index": {
     "blocks": {
       "read_only_allow_delete": null
    }
  }
}
curl -u elstic:pwd -XPUT -H 'Content-Type: application/json' http://endporint:9200/_all/_settings -d '{"index.blocks.read_only_allow_delete": null}'

标题:阿里云 - Elasticsearch磁盘锁定
地址:https://blog.njqhome.com:8443/articles/2022/03/29/1648550966629.html