参数说明:
persistent 表示为永久修改,重启以后也会保存设置
transient 表示临时修改,重启以后不会保存设置
cluster.routing.allocation.disk.watermark.low
:控制磁盘最小使用率,默认85%。说明es在磁盘使用率达到85%的时候将会停止分配新的shard。也可以设置为一个绝对数值,比如500M。
cluster.routing.allocation.disk.watermark.high
:控制磁盘的最大使用率,默认90%。说明在磁盘使用率达到90%的时候es将会relocate shard去其他的节点。同样也可以设置为一个绝对值。cluster.info.update.interval:设置时间间隔收集各个节点磁盘的使用情况,默认每隔30s
PUT /_cluster/settings
{
"persistent": {
"cluster.routing.allocation.disk.watermark.low": "90%",
"cluster.routing.allocation.disk.watermark.high": "95%",
"cluster.info.update.interval": "1m"
}
}
文章来源地址https://www.toymoban.com/news/detail-510546.html文章来源:https://www.toymoban.com/news/detail-510546.html
到了这里,关于修改elasticsearch修改磁盘比例限制的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!