From 4873e040a133b2d678f0f3ae49cadf04e385e412 Mon Sep 17 00:00:00 2001 From: Patrick Donnelly Date: Wed, 13 Mar 2019 09:13:02 -0700 Subject: [PATCH] qa: extend MDS heartbeat grace for valgrind Valgrind makes the MDS slowwwww. The newish mds_heartbeat_grace config allows us to keep sending beacons to the mons even if the internal heartbeat is slow. This avoids the laggy messages which are useful to grep for unrelated messaging issues. Fixes: http://tracker.ceph.com/issues/38723 Signed-off-by: Patrick Donnelly (cherry picked from commit 7b520755ce62461060b6dc75fb7a39c464d2bdcb) --- qa/suites/fs/verify/validater/valgrind.yaml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/qa/suites/fs/verify/validater/valgrind.yaml b/qa/suites/fs/verify/validater/valgrind.yaml index 6982cedfcaba..b25b71487764 100644 --- a/qa/suites/fs/verify/validater/valgrind.yaml +++ b/qa/suites/fs/verify/validater/valgrind.yaml @@ -1,21 +1,20 @@ # see http://tracker.ceph.com/issues/20360 and http://tracker.ceph.com/issues/18126 os_type: centos -# Valgrind makes everything slow, so ignore slow requests -overrides: - ceph: - log-whitelist: - - slow requests are blocked - overrides: install: ceph: flavor: notcmalloc debuginfo: true ceph: + # Valgrind makes everything slow, so ignore slow requests and extend heartbeat grace + log-whitelist: + - slow requests are blocked conf: global: osd heartbeat grace: 40 + mds: + mds heartbeat grace: 60 mon: mon osd crush smoke test: false valgrind: -- 2.47.3