From: Venky Shankar Date: Fri, 21 Mar 2025 17:09:58 +0000 (+0530) Subject: qa/cephfs: increase data to be delay data sync by mirror daemon X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F62250%2Fhead;p=ceph.git qa/cephfs: increase data to be delay data sync by mirror daemon Signed-off-by: Venky Shankar --- 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 4cb7d981d9d49..0000000000000 --- 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 0000000000000..834400c7c9b9c --- /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 30c4fd81dc3ad..4d17a9a902f0c 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)