From 6d2b447df8b968b0f9687f3f58ac067a6417889e Mon Sep 17 00:00:00 2001 From: Gerry Kopec Date: Wed, 30 Nov 2022 22:28:52 -0500 Subject: [PATCH] Increase platform memory reserve on AIO With tranistion to Debian, package upgrades and migration to ceph-csi, platform memory usage has increased and is hitting >75% usage under steady state conditions. As alarms will trigger at 80%, need to increase reserve to add additional buffer. Increase platform memory reserve to 10GB on single numa node AIO hosts. Test Plan: PASS Install AIO-SX system and confirm platform memory reserve in collectd logs. Closes-Bug: 1998421 Signed-off-by: Gerry Kopec Change-Id: I81329a3a90068274f9830161b22d7322cccc5405 --- sysinv/sysinv/sysinv/sysinv/common/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sysinv/sysinv/sysinv/sysinv/common/constants.py b/sysinv/sysinv/sysinv/sysinv/common/constants.py index ae5ee52949..c5aefdb6df 100644 --- a/sysinv/sysinv/sysinv/sysinv/common/constants.py +++ b/sysinv/sysinv/sysinv/sysinv/common/constants.py @@ -242,7 +242,7 @@ PLATFORM_CORE_MEMORY_RESERVED_MIB_VBOX = 1100 PLATFORM_CORE_MEMORY_RESERVED_MIB_VBOX_WORKER = 2000 # For AIO config, memory reserved for controller in MiB -COMBINED_NODE_CONTROLLER_MEMORY_RESERVED_MIB = 5000 +COMBINED_NODE_CONTROLLER_MEMORY_RESERVED_MIB = 7000 COMBINED_NODE_CONTROLLER_MEMORY_RESERVED_MIB_VBOX = 3000 COMBINED_NODE_CONTROLLER_MEMORY_RESERVED_MIB_XEOND = 3000