From: Sage Weil Date: Mon, 14 Dec 2015 21:33:38 +0000 (-0500) Subject: os/bluestore: default to 64k min_alloc_size X-Git-Tag: v10.0.3~154^2~122 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=22073a08de255397b4bc314b158e4bedf2df3762;p=ceph.git os/bluestore: default to 64k min_alloc_size Signed-off-by: Sage Weil --- diff --git a/src/common/config_opts.h b/src/common/config_opts.h index 37bf674bbad8..39050ac2f8b2 100644 --- a/src/common/config_opts.h +++ b/src/common/config_opts.h @@ -857,7 +857,7 @@ OPTION(bluestore_block_db_size, OPT_U64, 64 * 1024*1024) // 64MB for testing OPTION(bluestore_block_wal_path, OPT_STR, "") OPTION(bluestore_block_wal_size, OPT_U64, 128 * 1024*1024) // 128MB for testing OPTION(bluestore_max_dir_size, OPT_U32, 1000000) -OPTION(bluestore_min_alloc_size, OPT_U32, 512*1024) +OPTION(bluestore_min_alloc_size, OPT_U32, 64*1024) OPTION(bluestore_onode_map_size, OPT_U32, 1024) // onodes per collection OPTION(bluestore_cache_tails, OPT_BOOL, true) // cache tail blocks in Onode OPTION(bluestore_backend, OPT_STR, "rocksdb")