diff options
author | Patrick Donnelly <pdonnell@redhat.com> | 2023-03-21 21:39:05 +0100 |
---|---|---|
committer | Patrick Donnelly <pdonnell@redhat.com> | 2023-03-27 20:55:16 +0200 |
commit | 23a29d4abe54d987a99434ad0d733e0b44a213f9 (patch) | |
tree | 7308b0d4a786e015cb4746bd0830997b95d974ed /qa | |
parent | Merge pull request #48937 from adk3798/device-ls-size (diff) | |
download | ceph-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.py | 3 | ||||
-rw-r--r-- | qa/tasks/ceph_deploy.py | 3 | ||||
-rw-r--r-- | qa/tasks/cephadm.py | 3 | ||||
-rw-r--r-- | qa/tasks/rook.py | 3 |
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', '--', |