From 7b520755ce62461060b6dc75fb7a39c464d2bdcb 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 --- 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 2a7f21bfbb9..fc4c459d1ac 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.39.5