热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

elasticsearch7分片不足

1、场景说明:[2020-06-17T12:01:18,241][WARN][logstash.outputs.elasticsearch]Couldnotindexeventto

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}, #], :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、具体配置如图所示:

 



推荐阅读
author-avatar
w4x是真屌丝
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有