]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
os/bluestore: enable more flexible bluefs space management by default. 37092/head
authorIgor Fedotov <ifedotov@suse.com>
Fri, 21 Aug 2020 11:51:00 +0000 (14:51 +0300)
committerNeha Ojha <nojha@redhat.com>
Thu, 10 Sep 2020 18:36:39 +0000 (18:36 +0000)
It turned out that we did't enable it when introduced this feature in
https://github.com/ceph/ceph/pull/29687.

Fixes: https://tracker.ceph.com/issues/47053
Signed-off-by: Igor Fedotov <ifedotov@suse.com>
(cherry picked from commit 41823db09c609155db31afbd03b817c2a578fa9d)

src/common/options.cc

index 2af36dd0e4ef3f24c5cf31f50cea74adb595b46c..f76a623149472867515b343e10ce1c47aec74d50 100644 (file)
@@ -4649,7 +4649,7 @@ std::vector<Option> get_global_options() {
     .set_description("Maximum RAM hybrid allocator should use before enabling bitmap supplement"),
 
     Option("bluestore_volume_selection_policy", Option::TYPE_STR, Option::LEVEL_DEV)
-    .set_default("rocksdb_original")
+    .set_default("use_some_extra")
     .set_enum_allowed({ "rocksdb_original", "use_some_extra" })
     .set_description("Determines bluefs volume selection policy")
     .set_long_description("Determines bluefs volume selection policy. 'use_some_extra' policy allows to override RocksDB level granularity and put high level's data to faster device even when the level doesn't completely fit there"),