当前位置:   article > 正文

ES解除索引只读限制_es中部分索引被锁住了只能读

es中部分索引被锁住了只能读

问题出现:

Elasticsearch considers the available disk space on a node before deciding whether to allocate new shards to that node or to actively relocate shards away from that node.

Elasticsearch 在决定是否分配新分片给该节点,或对该节点重新定位分片之前,会先判断该节点存储空间是否足够,如果说你的使用磁盘空间已经超过 95%,ES 会自动将索引 index 置为 read-only 状态。

解决办法:

curl -XPUT -H "Content-Type: application/json" http://ip:9209/_all/_settings -d '{"index.blocks.read_only_allow_delete": null}'
返回:
{"acknowledged":true}

其中 _all 这个可以更改为自己在创建 Eleastisearch 索引的时候的name,用来修改单个索引只读状态,当然用 _all 也可以, _all 是修改了所有的索引只读状态ES解除索引只读限制

声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号