浏览文章

文章信息

Elasticsearch7 | 内存限制 | 解决内存占用越用越高的问题 10335

在Elasticsearch7的配置文件elasticsearch.yml中添加:

# 限制内存使用
indices.fielddata.cache.size:  10%
indices.breaker.fielddata.limit: 30%
indices.breaker.request.limit: 20%
indices.breaker.total.limit: 60%


原创