]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
os/bluestore: Enable sharding by default 34864/head
authorAdam Kupczyk <akupczyk@redhat.com>
Fri, 24 Apr 2020 12:36:05 +0000 (14:36 +0200)
committerAdam Kupczyk <akupczyk@redhat.com>
Thu, 14 May 2020 14:00:23 +0000 (16:00 +0200)
Signed-off-by: Adam Kupczyk <akupczyk@redhat.com>
src/common/options.cc

index 9d7c97af532e60fee84af9660f271520a51ded77..473a9d014cf940e4eae54773eb0f93aeee1a2d4a 100644 (file)
@@ -4417,11 +4417,11 @@ std::vector<Option> get_global_options() {
     .set_description("Rocksdb options"),
 
     Option("bluestore_rocksdb_cf", Option::TYPE_BOOL, Option::LEVEL_ADVANCED)
-    .set_default(false)
+    .set_default(true)
     .set_description("Enable use of rocksdb column families for bluestore metadata"),
 
     Option("bluestore_rocksdb_cfs", Option::TYPE_STR, Option::LEVEL_DEV)
-    .set_default("m(5) O(7,0-13) L")
+    .set_default("m(3) O(3,0-13) L")
     .set_description("Definition of column families and their sharding")
     .set_long_description("Space separated list of elements: column_def [ '=' rocksdb_options ]. "
                          "column_def := column_name [ '(' shard_count [ ',' hash_begin '-' [ hash_end ] ] ')' ]. "