Merge pull request #34970 from sebastian-philipp/bluestore-revert-sharding

Revert "os/bluestore: Enable sharding by default"

Reviewed-by: Adam Kupczyk <akupczyk@redhat.com>
This commit is contained in:
Sebastian Wagner 2020-05-12 09:42:33 +02:00 committed by GitHub
commit cf515323a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View 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(true)
.set_default(false)
.set_description("Enable use of rocksdb column families for bluestore metadata"),
Option("bluestore_rocksdb_cfs", Option::TYPE_STR, Option::LEVEL_DEV)
.set_default("m(3) O(3,0-13) L")
.set_default("m(5) O(7,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 ] ] ')' ]. "