summaryrefslogtreecommitdiffstats
path: root/flags
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@gmail.com>2021-12-16 10:30:25 +0100
committerJon Bratseth <bratseth@gmail.com>2021-12-16 10:30:25 +0100
commit272659196083a3a727c959fa661878fd0c5a7f5b (patch)
tree38a9cfb5aa06e1b2590a08b03f5af32675170b54 /flags
parent9b11287c6cb155fd57b38a9a5e1688018af7befc (diff)
Set the default host memory to 0.6
Diffstat (limited to 'flags')
-rw-r--r--flags/src/main/java/com/yahoo/vespa/flags/PermanentFlags.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/flags/src/main/java/com/yahoo/vespa/flags/PermanentFlags.java b/flags/src/main/java/com/yahoo/vespa/flags/PermanentFlags.java
index 0591163c931..b39a3309ad9 100644
--- a/flags/src/main/java/com/yahoo/vespa/flags/PermanentFlags.java
+++ b/flags/src/main/java/com/yahoo/vespa/flags/PermanentFlags.java
@@ -207,8 +207,8 @@ public class PermanentFlags {
// This must be set in a feature flag to avoid flickering between the new and old value during config server upgrade
public static final UnboundDoubleFlag HOST_MEMORY = defineDoubleFlag(
- "host-memory", 1.0,
- "The memory required by a hosts management processes.",
+ "host-memory", 0.6,
+ "The memory in GB required by a host's management processes.",
"Takes effect immediately",
ZONE_ID
);