Skip to content

Commit

Permalink
os/bluestore: default bluestore_block_size 1T -> 100G
Browse files Browse the repository at this point in the history
This makes vstart *way* faster.  This option is only really relevant
for dev test environments.  We bumped it up back in dbdd1d9
from 10G just to make ENOSPC less common in dev/test.  Let's see if 100G
is a better balance.

Signed-off-by: Sage Weil <sage@redhat.com>
  • Loading branch information
liewegas committed Dec 5, 2019
1 parent eec1d9f commit 57890fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/options.cc
Expand Up @@ -4061,7 +4061,7 @@ std::vector<Option> get_global_options() {
.set_description("Path to block device/file"),

Option("bluestore_block_size", Option::TYPE_SIZE, Option::LEVEL_DEV)
.set_default(1_T)
.set_default(100_G)
.set_flag(Option::FLAG_CREATE)
.set_description("Size of file to create for backing bluestore"),

Expand Down

0 comments on commit 57890fc

Please sign in to comment.