原因一:
ElasticSearch入“只读”模式,只允许删除。当ES数据所在目录磁盘空间使用率超过90%后,ES将修改为只读状态,所以初步判断是磁盘空间不足导致es自动关闭了索引的写功能,只能进行读取或者删除。
解决:
-
手动将 index.blocks.read_only_allow_delete 改成false
-
查看index.blocks.read_only_allow_delete状态
ip:9200/索引名/_settings?/_settings?pretty (GET)
3. 修改index.blocks.read_only_allow_delete状态文章来源:https://www.toymoban.com/news/detail-727142.html
ip:9200/索引名/_settings?pretty (PUT)文章来源地址https://www.toymoban.com/news/detail-727142.html
{
"index.blocks.read_only_allow_delete": null
}
到了这里,关于Es无法写入数据的原因分析的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!