]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
rocksdb: remove experimental status
authorSage Weil <sage@redhat.com>
Thu, 6 Oct 2016 17:56:43 +0000 (13:56 -0400)
committerSage Weil <sage@redhat.com>
Thu, 6 Oct 2016 17:56:43 +0000 (13:56 -0400)
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 <sage@redhat.com>
src/kv/KeyValueDB.cc

index 7c840e850d44eae746daf542b3c5a742f9210300..b1ec4529d0641760f311b5db411763383d514fea 100644 (file)
@@ -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