]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
os: remove experimental status for BlueStore 15177/head
authorSage Weil <sage@redhat.com>
Wed, 19 Apr 2017 13:33:33 +0000 (09:33 -0400)
committerSage Weil <sage@redhat.com>
Fri, 19 May 2017 13:34:07 +0000 (09:34 -0400)
Signed-off-by: Sage Weil <sage@redhat.com>
qa/objectstore/bluestore-comp.yaml
qa/objectstore/bluestore.yaml
src/os/ObjectStore.cc

index 6c466bed68a389ea7140b20ae884b1698492ae79..f49e4bcb073e63cafda751f10eb309498bb92ed5 100644 (file)
@@ -12,7 +12,6 @@ overrides:
         debug bdev: 20
         debug bluefs: 20
         debug rocksdb: 10
-        enable experimental unrecoverable data corrupting features: "*"
         bluestore compression mode: aggressive
 
 # this doesn't work with failures bc the log writes are not atomic across the two backends
index 361dae308deaa5ae81ab09ecc5ae8380a997c70a..61f5754d446eb01f1cd1d3ba7e3d5ed9197a62a8 100644 (file)
@@ -12,6 +12,5 @@ overrides:
         debug bdev: 20
         debug bluefs: 20
         debug rocksdb: 10
-        enable experimental unrecoverable data corrupting features: "*"
 # this doesn't work with failures bc the log writes are not atomic across the two backends
 #        bluestore bluefs env mirror: true
index 207472e341c17524ca6cdad312caddc80312e501..93c79667d4f171c3fa18b13e6c8ab6800d0bfccc 100644 (file)
@@ -73,12 +73,10 @@ ObjectStore *ObjectStore::create(CephContext *cct,
     return new MemStore(cct, data);
   }
 #if defined(HAVE_LIBAIO)
-  if (type == "bluestore" &&
-      cct->check_experimental_feature_enabled("bluestore")) {
+  if (type == "bluestore") {
     return new BlueStore(cct, data);
   }
-  if (type == "random" &&
-      cct->check_experimental_feature_enabled("bluestore")) {
+  if (type == "random") {
     if (rand() % 2) {
       return new FileStore(cct, data, journal, flags);
     } else {