当前位置:   article > 正文

Elasticsearch exception [type=cluster_block_exception, reason=blocked by: [FORBIDDEN/12/index r【已解决】_elasticsearchstatusexception[elasticsearch excepti

elasticsearchstatusexception[elasticsearch exception [type=cluster_block_exc

亲测 2022/08/16 BJ

文章目录

异常

Caused by: org.elasticsearch.ElasticsearchStatusException: Elasticsearch exception [type=cluster_block_exception, reason=blocked by: [FORBIDDEN/12/index read-only / allow delete (api)];]
        at org.elasticsearch.rest.BytesRestResponse.errorFromXContent(BytesRestResponse.java:177)
  • 1
  • 2

在这里插入图片描述

原因

集群存储资源高水位异常,默认当磁盘空间大于95%时,就会禁止写入。

解决

  1. 首先让es节点腾出足够的空间、

    删除磁盘数据 ; 扩容。

  2. 执行恢复命令

PUT _settings
{
  "index": {
    "blocks": {
      "read_only_allow_delete": "false"
    }
  }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

让es恢复到可写入状态。问题解决!

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/199809
推荐阅读
相关标签
  

闽ICP备14008679号