From: Sage Weil Date: Thu, 6 Oct 2016 17:56:43 +0000 (-0400) Subject: rocksdb: remove experimental status X-Git-Tag: v11.1.0~601^2~2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=68138893648e052a6549fecf23b0b58af921dfc7;p=ceph.git rocksdb: remove experimental status We've been testing rocksdb on mons in QA for months now with no problems. We've also observed no problems with its use in bluestore. Signed-off-by: Sage Weil --- diff --git a/src/kv/KeyValueDB.cc b/src/kv/KeyValueDB.cc index 7c840e850d44..b1ec4529d064 100644 --- a/src/kv/KeyValueDB.cc +++ b/src/kv/KeyValueDB.cc @@ -25,8 +25,7 @@ KeyValueDB *KeyValueDB::create(CephContext *cct, const string& type, } #endif #ifdef HAVE_LIBROCKSDB - if (type == "rocksdb" && - cct->check_experimental_feature_enabled("rocksdb")) { + if (type == "rocksdb") { return new RocksDBStore(cct, dir, p); } #endif