Skip to content

Commit 4594355

Browse files
committed
qa/suites/crimson-rados(-experimental): set max-attr-len to 8192 for crimson thrash
tests Signed-off-by: Xuehan Xu <[email protected]>
1 parent 45a6d3f commit 4594355

File tree

5 files changed

+6
-1
lines changed

5 files changed

+6
-1
lines changed

qa/suites/crimson-rados-experimental/seastore/basic/tasks/readwrite.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ tasks:
1111
clients: [client.0]
1212
ops: 4000
1313
objects: 500
14+
max_attr_len: 8192
1415
op_weights:
1516
read: 45
1617
write: 45

qa/suites/crimson-rados/thrash/workloads/small-objects-balanced.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ tasks:
1010
objects: 1024
1111
size: 16384
1212
balance_reads: true
13+
max_attr_len: 8192
1314
op_weights:
1415
read: 100
1516
write: 100

qa/suites/crimson-rados/thrash/workloads/small-objects-localized.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ tasks:
1010
objects: 1024
1111
size: 16384
1212
localize_reads: true
13+
max_attr_len: 8192
1314
op_weights:
1415
read: 100
1516
write: 100

qa/suites/crimson-rados/thrash/workloads/small-objects.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ tasks:
99
max_in_flight: 64
1010
objects: 1024
1111
size: 16384
12+
max_attr_len: 8192
1213
op_weights:
1314
read: 100
1415
write: 100

qa/tasks/rados.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,8 @@ def task(ctx, config):
175175
'--size', str(object_size),
176176
'--min-stride-size', str(config.get('min_stride_size', object_size // 10)),
177177
'--max-stride-size', str(config.get('max_stride_size', object_size // 5)),
178-
'--max-seconds', str(config.get('max_seconds', 0))
178+
'--max-seconds', str(config.get('max_seconds', 0)),
179+
'--max-attr-len', str(config.get('max_attr_len', 20000))
179180
])
180181

181182
weights = {}

0 commit comments

Comments
 (0)