From fc6e683832125a1042638f21b623e29d0d4c34d8 Mon Sep 17 00:00:00 2001 From: Patrick Donnelly Date: Mon, 6 Aug 2018 17:55:42 -0700 Subject: [PATCH] qa: ignore normal slow IO warnings for cephfs Generally the slow warnings we get are just over the threshold. These warnings are related to deploying multiple Ceph daemons side-by-side. Let's see how we do with two minutes. Ignoring the warnings entirely is unsatisfactory as they serve as a useful canary in the coal mine when you see warnings for ops > some unreasonably large amount of time. Fixes: http://tracker.ceph.com/issues/26900 Signed-off-by: Patrick Donnelly --- qa/cephfs/conf/mds.yaml | 8 +++++--- qa/cephfs/conf/mon.yaml | 5 +++++ qa/cephfs/conf/osd.yaml | 5 +++++ 3 files changed, 15 insertions(+), 3 deletions(-) create mode 100644 qa/cephfs/conf/mon.yaml create mode 100644 qa/cephfs/conf/osd.yaml diff --git a/qa/cephfs/conf/mds.yaml b/qa/cephfs/conf/mds.yaml index 86ebf550110bd..0c2f8380547d2 100644 --- a/qa/cephfs/conf/mds.yaml +++ b/qa/cephfs/conf/mds.yaml @@ -2,8 +2,10 @@ overrides: ceph: conf: mds: + debug mds: 20 + debug ms: 1 + mds debug frag: true mds debug scatterstat: true + mds op complaint time: 180 mds verify scatter: true - mds debug frag: true - debug ms: 1 - debug mds: 20 + osd op complaint time: 180 diff --git a/qa/cephfs/conf/mon.yaml b/qa/cephfs/conf/mon.yaml new file mode 100644 index 0000000000000..8d1babb30442e --- /dev/null +++ b/qa/cephfs/conf/mon.yaml @@ -0,0 +1,5 @@ +overrides: + ceph: + conf: + osd: + mon op complaint time: 120 diff --git a/qa/cephfs/conf/osd.yaml b/qa/cephfs/conf/osd.yaml new file mode 100644 index 0000000000000..1087202f99873 --- /dev/null +++ b/qa/cephfs/conf/osd.yaml @@ -0,0 +1,5 @@ +overrides: + ceph: + conf: + osd: + osd op complaint time: 180 -- 2.39.5