From: Sage Weil Date: Wed, 3 Feb 2016 15:51:22 +0000 (-0500) Subject: config: set default bluestore wal size to 96 MB X-Git-Tag: v10.0.4~44^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=c77e8fd6f16b49206887e1f15a5600f3f05bb992;p=ceph.git config: set default bluestore wal size to 96 MB Signed-off-by: Sage Weil --- diff --git a/src/common/config_opts.h b/src/common/config_opts.h index 87ceb1be123a..d9601c2b183f 100644 --- a/src/common/config_opts.h +++ b/src/common/config_opts.h @@ -896,9 +896,9 @@ OPTION(bluestore_bluefs_reclaim_ratio, OPT_FLOAT, .20) // how much to reclaim at OPTION(bluestore_block_path, OPT_STR, "") OPTION(bluestore_block_size, OPT_U64, 10 * 1024*1024*1024) // 10gb for testing OPTION(bluestore_block_db_path, OPT_STR, "") -OPTION(bluestore_block_db_size, OPT_U64, 0) // rocksdb primary storage +OPTION(bluestore_block_db_size, OPT_U64, 0) // rocksdb ssts (hot/warm) OPTION(bluestore_block_wal_path, OPT_STR, "") -OPTION(bluestore_block_wal_size, OPT_U64, 0) // rocksdb wal +OPTION(bluestore_block_wal_size, OPT_U64, 96 * 1024*1024) // rocksdb wal OPTION(bluestore_max_dir_size, OPT_U32, 1000000) OPTION(bluestore_min_alloc_size, OPT_U32, 64*1024) OPTION(bluestore_onode_map_size, OPT_U32, 1024) // onodes per collection