From c77e8fd6f16b49206887e1f15a5600f3f05bb992 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Wed, 3 Feb 2016 10:51:22 -0500 Subject: [PATCH] config: set default bluestore wal size to 96 MB Signed-off-by: Sage Weil --- src/common/config_opts.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/config_opts.h b/src/common/config_opts.h index 87ceb1be123..d9601c2b183 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 -- 2.47.3