当前位置:网站首页>Es log error appreciation -maximum shards open
Es log error appreciation -maximum shards open
2022-07-07 14:31:00 【Es assistant】
Error reporting
this action would add [1] total shards, but this cluster currently has [29998]/[3000] maximum shay ds openError reporting analysis
There is a maximum number of index shards for a single node , If the limit is exceeded, it will result in the inability to add new partitions
Solution
View the maximum number of shards that can be accommodated by a single node of the current cluster
GET _cluster/settings?include_defaults&flat_settingsSearch for :cluster.max_shards_per_node
According to the cluster situation , Adjust the maximum number of slices , Be careful , Here, the maximum number of slices of a single node is adjusted , The maximum total number of partitions of the cluster needs to use the maximum number of partitions of a single node * Number of nodes
Adjustment example :
Kibana The way :
PUT _cluster/settings
{
"transient":{
"cluster.max_shards_per_node":"2000"
}
}Curl The way :
curl -XPUT -H "Content-Type:application/json" --user user:password -d '{"persistent":{"cluster":{"max_shards_per_node":10000}}}' 'http://ip:port/_cluster/settings'边栏推荐
- 内部排序——插入排序
- C # use TCP protocol to establish connection
- Leetcode——344. 反转字符串/541. 反转字符串 II/151. 颠倒字符串中的单词/剑指 Offer 58 - II. 左旋转字符串
- 杭电oj2054 A == B ? ???
- Beginner JSP
- VSCode 配置使用 PyLint 语法检查器
- 华为云数据库DDS产品深度赋能
- Simple use of websocket
- 因员工将密码设为“123456”,AMD 被盗 450Gb 数据?
- Excuse me, why is it that there are no consumption messages in redis and they are all piled up in redis? Cerely is used.
猜你喜欢
随机推荐
Horizontal of libsgm_ path_ Interpretation of aggregation program
Similarities and differences between switches and routers
最长上升子序列模型 AcWing 1014. 登山
MicTR01 Tester 振弦采集模块开发套件使用说明
PyTorch模型训练实战技巧,突破速度瓶颈
c#利用 TCP 协议建立连接
Arm cortex-a9, mcimx6u7cvm08ad processor application
Nllb-200: meta open source new model, which can translate 200 languages
Mlgo: Google AI releases industrial compiler optimized machine learning framework
MicTR01 Tester 振弦采集模塊開發套件使用說明
Source code analysis of ArrayList
【历史上的今天】7 月 7 日:C# 发布;Chrome OS 问世;《仙剑奇侠传》发行
数据流图,数据字典
Ascend 910实现Tensorflow1.15实现LeNet网络的minist手写数字识别
oracle 触发器实现级联更新
一款你不容错过的Laravel后台管理扩展包 —— Voyager
ES日志报错赏析-- allow delete
Parsing of XML files
Small game design framework
js 获取当前时间 年月日,uniapp定位 小程序打开地图选择地点









