summaryrefslogtreecommitdiffstats
path: root/config-model/src/main/java/com/yahoo/config
diff options
context:
space:
mode:
authorGeir Storli <geirst@yahooinc.com>2022-02-14 15:21:34 +0000
committerGeir Storli <geirst@yahooinc.com>2022-02-14 15:21:34 +0000
commitd93989ba9fea718bd4e7b3db5cdd3bc6c9731721 (patch)
tree83bc03711426e6c5b50c6bd57c1991d1d22036de /config-model/src/main/java/com/yahoo/config
parent5ddfbb1934693c4e892d8ed5518031288a694400 (diff)
Reduce default resource limit for disk from 80% to 75%.
After the changes in https://github.com/vespa-engine/vespa/pull/20818, the transient disk used as part of index fusion is no longer reported to the cluster controller. Transient disk usage should be covered by the resource headroom on content nodes, instead of leading to feed blocked due to natural fluctuations. We must therefore adjust the limit slightly down, to ensure the content nodes have enough headroom.
Diffstat (limited to 'config-model/src/main/java/com/yahoo/config')
-rw-r--r--config-model/src/main/java/com/yahoo/config/model/deploy/TestProperties.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/config-model/src/main/java/com/yahoo/config/model/deploy/TestProperties.java b/config-model/src/main/java/com/yahoo/config/model/deploy/TestProperties.java
index 0cde8c361a7..e6a931e9474 100644
--- a/config-model/src/main/java/com/yahoo/config/model/deploy/TestProperties.java
+++ b/config-model/src/main/java/com/yahoo/config/model/deploy/TestProperties.java
@@ -58,7 +58,7 @@ public class TestProperties implements ModelContext.Properties, ModelContext.Fea
private int maxMergeQueueSize = 100;
private boolean allowDisableMtls = true;
private List<X509Certificate> operatorCertificates = Collections.emptyList();
- private double resourceLimitDisk = 0.8;
+ private double resourceLimitDisk = 0.75;
private double resourceLimitMemory = 0.8;
private double minNodeRatioPerGroup = 0.0;
private boolean containerDumpHeapOnShutdownTimeout = false;