summaryrefslogtreecommitdiffstats
path: root/qa
diff options
context:
space:
mode:
authorPatrick Donnelly <pdonnell@redhat.com>2023-03-21 21:39:05 +0100
committerPatrick Donnelly <pdonnell@redhat.com>2023-03-27 20:55:16 +0200
commit23a29d4abe54d987a99434ad0d733e0b44a213f9 (patch)
tree7308b0d4a786e015cb4746bd0830997b95d974ed /qa
parentMerge pull request #48937 from adk3798/device-ls-size (diff)
downloadceph-23a29d4abe54d987a99434ad0d733e0b44a213f9.tar.xz
ceph-23a29d4abe54d987a99434ad0d733e0b44a213f9.zip
qa/ceph: parallelize gzip
Our machines have lots of cores, use them! Fixes: https://tracker.ceph.com/issues/59120 Signed-off-by: Patrick Donnelly <pdonnell@redhat.com>
Diffstat (limited to 'qa')
-rw-r--r--qa/tasks/ceph.py3
-rw-r--r--qa/tasks/ceph_deploy.py3
-rw-r--r--qa/tasks/cephadm.py3
-rw-r--r--qa/tasks/rook.py3
4 files changed, 12 insertions, 0 deletions
diff --git a/qa/tasks/ceph.py b/qa/tasks/ceph.py
index 35b52fbf552..10dcc2aee04 100644
--- a/qa/tasks/ceph.py
+++ b/qa/tasks/ceph.py
@@ -271,6 +271,9 @@ def ceph_log(ctx, config):
run.Raw('|'),
'sudo',
'xargs',
+ '--max-args=1',
+ '--max-procs=0',
+ '--verbose',
'-0',
'--no-run-if-empty',
'--',
diff --git a/qa/tasks/ceph_deploy.py b/qa/tasks/ceph_deploy.py
index 99c8c1ffbc1..83918a03f5f 100644
--- a/qa/tasks/ceph_deploy.py
+++ b/qa/tasks/ceph_deploy.py
@@ -533,6 +533,9 @@ def build_ceph_cluster(ctx, config):
run.Raw('|'),
'sudo',
'xargs',
+ '--max-args=1',
+ '--max-procs=0',
+ '--verbose',
'-0',
'--no-run-if-empty',
'--',
diff --git a/qa/tasks/cephadm.py b/qa/tasks/cephadm.py
index 84685b824bf..0e912260170 100644
--- a/qa/tasks/cephadm.py
+++ b/qa/tasks/cephadm.py
@@ -356,6 +356,9 @@ def ceph_log(ctx, config):
run.Raw('|'),
'sudo',
'xargs',
+ '--max-args=1',
+ '--max-procs=0',
+ '--verbose',
'-0',
'--no-run-if-empty',
'--',
diff --git a/qa/tasks/rook.py b/qa/tasks/rook.py
index 427f8324e30..12d01ce8930 100644
--- a/qa/tasks/rook.py
+++ b/qa/tasks/rook.py
@@ -272,6 +272,9 @@ def ceph_log(ctx, config):
run.Raw('|'),
'sudo',
'xargs',
+ '--max-args=1',
+ '--max-procs=0',
+ '--verbose',
'-0',
'--no-run-if-empty',
'--',