From: Igor Fedotov Date: Mon, 9 Feb 2026 14:58:43 +0000 (+0300) Subject: qa/standalone: increase WAL volume size to 1GB X-Git-Tag: v19.2.4~26^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=c098884dadf74cdbf47a43aeb322f6e69fb176df;p=ceph.git qa/standalone: increase WAL volume size to 1GB to avoid unexpected test case failures due to ENOSPC. Signed-off-by: Igor Fedotov (cherry picked from commit 2de79c64420ffba91becdf29f2d4f6b2d5931830) --- diff --git a/qa/standalone/osd/osd-bluefs-volume-ops.sh b/qa/standalone/osd/osd-bluefs-volume-ops.sh index d376a3ac97a..8e174249133 100755 --- a/qa/standalone/osd/osd-bluefs-volume-ops.sh +++ b/qa/standalone/osd/osd-bluefs-volume-ops.sh @@ -30,7 +30,7 @@ function TEST_bluestore() { CEPH_ARGS+="--bluestore_block_size=2147483648 " CEPH_ARGS+="--bluestore_block_db_create=true " CEPH_ARGS+="--bluestore_block_db_size=1073741824 " - CEPH_ARGS+="--bluestore_block_wal_size=536870912 " + CEPH_ARGS+="--bluestore_block_wal_size=1073741824 " CEPH_ARGS+="--bluestore_block_wal_create=true " CEPH_ARGS+="--bluestore_fsck_on_mount=true " #choosing randomly allocation from file @@ -167,7 +167,7 @@ function TEST_bluestore() { # slow, DB -> slow, DB, WAL ceph-bluestore-tool --path $dir/0 fsck || return 1 - dd if=/dev/zero of=$dir/0/wal count=512 bs=1M + dd if=/dev/zero of=$dir/0/wal count=1024 bs=1M ceph-bluestore-tool --path $dir/0 \ --dev-target $dir/0/wal \ --command bluefs-bdev-new-wal || return 1 @@ -253,7 +253,7 @@ function TEST_bluestore() { # slow, DB, WAL1 -> slow, DB, WAL2 - dd if=/dev/zero of=$dir/0/wal2 count=512 bs=1M + dd if=/dev/zero of=$dir/0/wal2 count=1024 bs=1M ceph-bluestore-tool --path $dir/0 \ --devs-source $dir/0/block.wal \ --dev-target $dir/0/wal2 \