赞
踩
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解除索引只读限制
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。