From: Sage Weil Date: Thu, 6 Oct 2016 17:58:06 +0000 (-0400) Subject: mon: default to rocksdb (for new mons) X-Git-Tag: v11.1.0~601^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=c26c80fd109fdeecfca7b9c728ebdf323943cd97;p=ceph.git mon: default to rocksdb (for new mons) Signed-off-by: Sage Weil --- diff --git a/src/common/config_opts.h b/src/common/config_opts.h index 312b8edf36ba..aecf56003b54 100644 --- a/src/common/config_opts.h +++ b/src/common/config_opts.h @@ -334,7 +334,7 @@ OPTION(mon_inject_transaction_delay_probability, OPT_DOUBLE, 0) // range [0, 1] OPTION(mon_sync_provider_kill_at, OPT_INT, 0) // kill the sync provider at a specific point in the work flow OPTION(mon_sync_requester_kill_at, OPT_INT, 0) // kill the sync requester at a specific point in the work flow OPTION(mon_force_quorum_join, OPT_BOOL, false) // force monitor to join quorum even if it has been previously removed from the map -OPTION(mon_keyvaluedb, OPT_STR, "leveldb") // type of keyvaluedb backend +OPTION(mon_keyvaluedb, OPT_STR, "rocksdb") // type of keyvaluedb backend // UNSAFE -- TESTING ONLY! Allows addition of a cache tier with preexisting snaps OPTION(mon_debug_unsafe_allow_tier_with_nonempty_snaps, OPT_BOOL, false)