From 806a7708662821c164d30da03789638b9c62d58d Mon Sep 17 00:00:00 2001 From: Paul Cuzner Date: Thu, 25 Jan 2024 10:22:13 +1300 Subject: [PATCH] cephadm: Add nvmeof to autotuner calculation Add nvmeof to the list of daemons when calculating the memory to use for OSDs. Fixes: https://tracker.ceph.com/issues/64020 Signed-off-by: Paul Cuzner (cherry picked from commit 31e4b8de9631eef2b4b5d9865725b0520637d603) --- src/pybind/mgr/cephadm/autotune.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pybind/mgr/cephadm/autotune.py b/src/pybind/mgr/cephadm/autotune.py index 51c931cbad6..72ebcd66064 100644 --- a/src/pybind/mgr/cephadm/autotune.py +++ b/src/pybind/mgr/cephadm/autotune.py @@ -15,6 +15,7 @@ class MemoryAutotuner(object): 'crash': 128 * 1048576, 'keepalived': 128 * 1048576, 'haproxy': 128 * 1048576, + 'nvmeof': 4096 * 1048576, } default_size = 1024 * 1048576 -- 2.39.5