From dff9af637775106690327568d56dd73fbf1c5125 Mon Sep 17 00:00:00 2001 From: Venky Shankar Date: Fri, 21 Mar 2025 22:39:58 +0530 Subject: [PATCH] qa/cephfs: increase data to be delay data sync by mirror daemon Signed-off-by: Venky Shankar (cherry picked from commit ab566d54a8299c712c312e02051c8f3a6b20317c) --- .../mirror/overrides/ignorelist_health.yaml | 30 ++++++++++++++++++- qa/tasks/cephfs/test_mirroring.py | 2 +- 2 files changed, 30 insertions(+), 2 deletions(-) mode change 120000 => 100644 qa/suites/fs/mirror/overrides/ignorelist_health.yaml diff --git a/qa/suites/fs/mirror/overrides/ignorelist_health.yaml b/qa/suites/fs/mirror/overrides/ignorelist_health.yaml deleted file mode 120000 index 4cb7d981d9d..00000000000 --- a/qa/suites/fs/mirror/overrides/ignorelist_health.yaml +++ /dev/null @@ -1 +0,0 @@ -./.qa/cephfs/overrides/ignorelist_health.yaml \ No newline at end of file diff --git a/qa/suites/fs/mirror/overrides/ignorelist_health.yaml b/qa/suites/fs/mirror/overrides/ignorelist_health.yaml new file mode 100644 index 00000000000..834400c7c9b --- /dev/null +++ b/qa/suites/fs/mirror/overrides/ignorelist_health.yaml @@ -0,0 +1,29 @@ +overrides: + ceph: + log-ignorelist: + - FS_DEGRADED + - fs.*is degraded + - filesystem is degraded + - FS_INLINE_DATA_DEPRECATED + - FS_WITH_FAILED_MDS + - MDS_ALL_DOWN + - filesystem is offline + - is offline because no MDS + - MDS_DAMAGE + - MDS_DEGRADED + - MDS_FAILED + - MDS_INSUFFICIENT_STANDBY + - insufficient standby MDS daemons available + - MDS_UP_LESS_THAN_MAX + - online, but wants + - filesystem is online with fewer MDS than max_mds + - POOL_APP_NOT_ENABLED + - do not have an application enabled + - overall HEALTH_ + - Replacing daemon + - deprecated feature inline_data + - BLUESTORE_SLOW_OP_ALERT + - slow operation indications in BlueStore + - experiencing slow operations in BlueStore + - MGR_MODULE_ERROR + - OSD_NEARFULL diff --git a/qa/tasks/cephfs/test_mirroring.py b/qa/tasks/cephfs/test_mirroring.py index 30c4fd81dc3..4d17a9a902f 100644 --- a/qa/tasks/cephfs/test_mirroring.py +++ b/qa/tasks/cephfs/test_mirroring.py @@ -686,7 +686,7 @@ class TestMirroring(CephFSTestCase): # create a bunch of files in a directory to snap self.mount_a.run_shell(["mkdir", "d0"]) - for i in range(8): + for i in range(100): filename = f'file.{i}' self.mount_a.write_n_mb(os.path.join('d0', filename), 1024) -- 2.39.5