2017-05-10 23:54:35 +02:00
|
|
|
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
|
2017-07-16 01:03:42 +02:00
|
|
|
// This source code is licensed under both the GPLv2 (found in the
|
|
|
|
// COPYING file in the root directory) and Apache 2.0 License
|
|
|
|
// (found in the LICENSE.Apache file in the root directory).
|
2017-05-10 23:54:35 +02:00
|
|
|
//
|
2016-08-09 19:16:32 +02:00
|
|
|
#ifndef ROCKSDB_LITE
|
2017-05-10 23:54:35 +02:00
|
|
|
|
|
|
|
#include "utilities/blob_db/blob_db.h"
|
2017-08-01 21:48:22 +02:00
|
|
|
|
2019-06-06 22:52:39 +02:00
|
|
|
#include <cinttypes>
|
2017-05-10 23:54:35 +02:00
|
|
|
#include "utilities/blob_db/blob_db_impl.h"
|
2016-08-09 19:16:32 +02:00
|
|
|
|
2020-02-20 21:07:53 +01:00
|
|
|
namespace ROCKSDB_NAMESPACE {
|
2017-05-10 23:54:35 +02:00
|
|
|
namespace blob_db {
|
2016-08-09 19:16:32 +02:00
|
|
|
|
2017-05-10 23:54:35 +02:00
|
|
|
Status BlobDB::Open(const Options& options, const BlobDBOptions& bdb_options,
|
|
|
|
const std::string& dbname, BlobDB** blob_db) {
|
|
|
|
*blob_db = nullptr;
|
|
|
|
DBOptions db_options(options);
|
|
|
|
ColumnFamilyOptions cf_options(options);
|
|
|
|
std::vector<ColumnFamilyDescriptor> column_families;
|
|
|
|
column_families.push_back(
|
|
|
|
ColumnFamilyDescriptor(kDefaultColumnFamilyName, cf_options));
|
|
|
|
std::vector<ColumnFamilyHandle*> handles;
|
|
|
|
Status s = BlobDB::Open(db_options, bdb_options, dbname, column_families,
|
|
|
|
&handles, blob_db);
|
|
|
|
if (s.ok()) {
|
|
|
|
assert(handles.size() == 1);
|
|
|
|
// i can delete the handle since DBImpl is always holding a reference to
|
|
|
|
// default column family
|
|
|
|
delete handles[0];
|
2016-08-09 19:16:32 +02:00
|
|
|
}
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2017-12-11 21:01:22 +01:00
|
|
|
Status BlobDB::Open(const DBOptions& db_options,
|
2017-05-10 23:54:35 +02:00
|
|
|
const BlobDBOptions& bdb_options, const std::string& dbname,
|
|
|
|
const std::vector<ColumnFamilyDescriptor>& column_families,
|
2017-12-11 21:01:22 +01:00
|
|
|
std::vector<ColumnFamilyHandle*>* handles,
|
|
|
|
BlobDB** blob_db) {
|
2020-04-28 01:42:16 +02:00
|
|
|
assert(handles);
|
|
|
|
|
2017-11-03 01:26:46 +01:00
|
|
|
if (column_families.size() != 1 ||
|
|
|
|
column_families[0].name != kDefaultColumnFamilyName) {
|
|
|
|
return Status::NotSupported(
|
|
|
|
"Blob DB doesn't support non-default column family.");
|
|
|
|
}
|
|
|
|
|
2017-12-11 21:01:22 +01:00
|
|
|
BlobDBImpl* blob_db_impl = new BlobDBImpl(dbname, bdb_options, db_options,
|
|
|
|
column_families[0].options);
|
|
|
|
Status s = blob_db_impl->Open(handles);
|
|
|
|
if (s.ok()) {
|
|
|
|
*blob_db = static_cast<BlobDB*>(blob_db_impl);
|
|
|
|
} else {
|
2020-04-28 01:42:16 +02:00
|
|
|
if (!handles->empty()) {
|
|
|
|
for (ColumnFamilyHandle* cfh : *handles) {
|
|
|
|
blob_db_impl->DestroyColumnFamilyHandle(cfh);
|
|
|
|
}
|
|
|
|
|
|
|
|
handles->clear();
|
|
|
|
}
|
|
|
|
|
2017-12-11 21:01:22 +01:00
|
|
|
delete blob_db_impl;
|
|
|
|
*blob_db = nullptr;
|
2016-08-09 19:16:32 +02:00
|
|
|
}
|
|
|
|
return s;
|
|
|
|
}
|
2017-05-10 23:54:35 +02:00
|
|
|
|
2017-12-11 21:01:22 +01:00
|
|
|
BlobDB::BlobDB() : StackableDB(nullptr) {}
|
2017-05-10 23:54:35 +02:00
|
|
|
|
2017-08-01 21:48:22 +02:00
|
|
|
void BlobDBOptions::Dump(Logger* log) const {
|
2018-03-06 20:46:20 +01:00
|
|
|
ROCKS_LOG_HEADER(
|
|
|
|
log, " BlobDBOptions.blob_dir: %s",
|
|
|
|
blob_dir.c_str());
|
|
|
|
ROCKS_LOG_HEADER(
|
|
|
|
log, " BlobDBOptions.path_relative: %d",
|
|
|
|
path_relative);
|
|
|
|
ROCKS_LOG_HEADER(
|
|
|
|
log, " BlobDBOptions.is_fifo: %d",
|
|
|
|
is_fifo);
|
|
|
|
ROCKS_LOG_HEADER(
|
|
|
|
log, " BlobDBOptions.max_db_size: %" PRIu64,
|
|
|
|
max_db_size);
|
|
|
|
ROCKS_LOG_HEADER(
|
2019-01-16 01:25:03 +01:00
|
|
|
log, " BlobDBOptions.ttl_range_secs: %" PRIu64,
|
2018-03-06 20:46:20 +01:00
|
|
|
ttl_range_secs);
|
|
|
|
ROCKS_LOG_HEADER(
|
|
|
|
log, " BlobDBOptions.min_blob_size: %" PRIu64,
|
|
|
|
min_blob_size);
|
|
|
|
ROCKS_LOG_HEADER(
|
|
|
|
log, " BlobDBOptions.bytes_per_sync: %" PRIu64,
|
|
|
|
bytes_per_sync);
|
|
|
|
ROCKS_LOG_HEADER(
|
|
|
|
log, " BlobDBOptions.blob_file_size: %" PRIu64,
|
|
|
|
blob_file_size);
|
|
|
|
ROCKS_LOG_HEADER(
|
|
|
|
log, " BlobDBOptions.compression: %d",
|
|
|
|
static_cast<int>(compression));
|
|
|
|
ROCKS_LOG_HEADER(
|
|
|
|
log, " BlobDBOptions.enable_garbage_collection: %d",
|
|
|
|
enable_garbage_collection);
|
2019-12-20 19:59:19 +01:00
|
|
|
ROCKS_LOG_HEADER(
|
|
|
|
log, " BlobDBOptions.garbage_collection_cutoff: %f",
|
|
|
|
garbage_collection_cutoff);
|
2018-03-06 20:46:20 +01:00
|
|
|
ROCKS_LOG_HEADER(
|
|
|
|
log, " BlobDBOptions.disable_background_tasks: %d",
|
|
|
|
disable_background_tasks);
|
2017-08-01 21:48:22 +02:00
|
|
|
}
|
2017-05-10 23:54:35 +02:00
|
|
|
|
|
|
|
} // namespace blob_db
|
2020-02-20 21:07:53 +01:00
|
|
|
} // namespace ROCKSDB_NAMESPACE
|
2017-05-10 23:54:35 +02:00
|
|
|
#endif
|