]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
qa/suites/crimson-rados(-experimental): set max-attr-len to 8192 for crimson thrash 56114/head
authorXuehan Xu <xuxuehan@qianxin.com>
Mon, 11 Mar 2024 08:41:21 +0000 (16:41 +0800)
committerXuehan Xu <xuxuehan@qianxin.com>
Thu, 14 Mar 2024 06:33:36 +0000 (14:33 +0800)
tests

Signed-off-by: Xuehan Xu <xuxuehan@qianxin.com>
qa/suites/crimson-rados-experimental/seastore/basic/tasks/readwrite.yaml
qa/suites/crimson-rados/thrash/workloads/small-objects-balanced.yaml
qa/suites/crimson-rados/thrash/workloads/small-objects-localized.yaml
qa/suites/crimson-rados/thrash/workloads/small-objects.yaml
qa/tasks/rados.py

index f135107c7679e9223512dc5e8c540684ba7ce69e..25efcdac83d5285557860d7f960d3d2b2dc0b2fc 100644 (file)
@@ -11,6 +11,7 @@ tasks:
     clients: [client.0]
     ops: 4000
     objects: 500
+    max_attr_len: 8192
     op_weights:
       read: 45
       write: 45
index 0c50dc13603dae170effd3a5bb63977e0b580489..afe04229898a9e09c50c79aca89713c886059986 100644 (file)
@@ -10,6 +10,7 @@ tasks:
     objects: 1024
     size: 16384
     balance_reads: true
+    max_attr_len: 8192
     op_weights:
       read: 100
       write: 100
index df5c114f1978f036d0ce1c976ca2eb2dce09536e..445b582ea424e7cce7881ec6dbb8cf352d97c05d 100644 (file)
@@ -10,6 +10,7 @@ tasks:
     objects: 1024
     size: 16384
     localize_reads: true
+    max_attr_len: 8192
     op_weights:
       read: 100
       write: 100
index 32928c303f63f3c9ce076fea1ce47873571125a4..e7e8070fd767ef4e099123d10a8c5ef40393ab8c 100644 (file)
@@ -9,6 +9,7 @@ tasks:
     max_in_flight: 64
     objects: 1024
     size: 16384
+    max_attr_len: 8192
     op_weights:
       read: 100
       write: 100
index 7e786fb68e7ef23b0c21da20ab32af10713945ac..60c7121f42741bcb9980ddb6080ab8a4d7a49464 100644 (file)
@@ -175,7 +175,8 @@ def task(ctx, config):
         '--size', str(object_size),
         '--min-stride-size', str(config.get('min_stride_size', object_size // 10)),
         '--max-stride-size', str(config.get('max_stride_size', object_size // 5)),
-        '--max-seconds', str(config.get('max_seconds', 0))
+        '--max-seconds', str(config.get('max_seconds', 0)),
+        '--max-attr-len', str(config.get('max_attr_len', 20000))
         ])
 
     weights = {}