]> git.apps.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)
committerJosh Durgin <jdurgin@redhat.com>
Wed, 4 Apr 2018 14:12:43 +0000 (10:12 -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>
(cherry picked from commit 68138893648e052a6549fecf23b0b58af921dfc7)

src/kv/KeyValueDB.cc

index 9437958739ae8aea239436a399d28287cd9f0d27..63ac3919b201eaef6863a006cf2a4bdaaa5bd9dd 100644 (file)
@@ -24,8 +24,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