]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
qa/standalone: increase WAL volume size to 1GB
authorIgor Fedotov <igor.fedotov@croit.io>
Mon, 9 Feb 2026 14:58:43 +0000 (17:58 +0300)
committerIgor Fedotov <ifedotov@croit.io>
Wed, 18 Mar 2026 16:33:43 +0000 (19:33 +0300)
to avoid unexpected test case failures due to ENOSPC.

Signed-off-by: Igor Fedotov <igor.fedotov@croit.io>
(cherry picked from commit 2de79c64420ffba91becdf29f2d4f6b2d5931830)

qa/standalone/osd/osd-bluefs-volume-ops.sh

index d376a3ac97a934341f61e6e5e4cefe060b593846..8e17424913366c91aebbd35812297a0f47a33f23 100755 (executable)
@@ -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 \