赞
踩
使用es-head在概览首页查看索信息是否只读
如下图查看索引的信息,会看到 “read_only_allow_delete”:"true"的标识,说明该索引被锁死,只能进行只读和删除操作,不能再进行删除和新增,造成原因可能是es的磁盘满了。
可以使用请求
curl -XPUT -H "Content-Type: application/json" http://170.100.104.47:9200/_all/_settings -d '{"index.blocks.read_only_allow_delete": null}'
或者像下图一样使用es-head
_all/settings 是全部索引 如果单个索引的话可以使用 “索引名/setting”
“read_only_allow_delete”:“true” 字段已经没有了,说明恢复正常
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。