微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

elasticsearch7 分片不足

1、场景说明:

[2020-06-17T12:01:18,241][WARN ][logstash.outputs.elasticsearch] Could not index event to Elasticsearch. {:status=>400, :action=>["index", {:_id=>nil, :_index=>"bizlog-wxxcx-2020.06.17", :_type=>"_doc", :_routing=>nil}, #<LogStash::Event:0x5b51884a>], :response=>{"index"=>{"_index"=>"bizlog-wxxcx-2020.06.17", "_type"=>"_doc", "_id"=>nil, "status"=>400, "error"=>{"type"=>"illegal_argument_exception", "reason"=>"Validation Failed: 1: this action would add [2] total shards, but this cluster currently has [5000]/[5000] maximum shards open;"}}}}

 

2、处理思路:

7版本以上的elasticsearch,认只允许1000个分片,问题是因为集群分片数不足引起的。

3、处理步骤:

3.1、登录elasticsearch-head:

http://IP:端口/?auth_user=账号&auth_password=密码

PUT /_cluster/settings
{
  "transient": {
    "cluster": {
      "max_shards_per_node":10000
    }
  }
}

3.2、具体配置如图所示:

 

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐