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
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
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 {