|
|
|
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
|
|
|
|
// 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).
|
|
|
|
#ifndef ROCKSDB_LITE
|
|
|
|
#include "utilities/blob_db/blob_file.h"
|
|
|
|
|
|
|
|
#ifndef __STDC_FORMAT_MACROS
|
|
|
|
#define __STDC_FORMAT_MACROS
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <inttypes.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
#include <memory>
|
|
|
|
|
Blob DB: Inline small values in base DB
Summary:
Adding the `min_blob_size` option to allow storing small values in base db (in LSM tree) together with the key. The goal is to improve performance for small values, while taking advantage of blob db's low write amplification for large values.
Also adding expiration timestamp to blob index. It will be useful to evict stale blob indexes in base db by adding a compaction filter. I'll work on the compaction filter in future patches.
See blob_index.h for the new blob index format. There are 4 cases when writing a new key:
* small value w/o TTL: put in base db as normal value (i.e. ValueType::kTypeValue)
* small value w/ TTL: put (type, expiration, value) to base db.
* large value w/o TTL: write value to blob log and put (type, file, offset, size, compression) to base db.
* large value w/TTL: write value to blob log and put (type, expiration, file, offset, size, compression) to base db.
Closes https://github.com/facebook/rocksdb/pull/3066
Differential Revision: D6142115
Pulled By: yiwu-arbug
fbshipit-source-id: 9526e76e19f0839310a3f5f2a43772a4ad182cd0
7 years ago
|
|
|
#include "db/dbformat.h"
|
|
|
|
#include "util/filename.h"
|
|
|
|
#include "util/logging.h"
|
|
|
|
#include "utilities/blob_db/blob_db_impl.h"
|
|
|
|
|
|
|
|
namespace rocksdb {
|
|
|
|
|
|
|
|
namespace blob_db {
|
|
|
|
|
|
|
|
BlobFile::BlobFile()
|
|
|
|
: parent_(nullptr),
|
|
|
|
file_number_(0),
|
|
|
|
blob_count_(0),
|
|
|
|
gc_epoch_(-1),
|
|
|
|
file_size_(0),
|
|
|
|
deleted_count_(0),
|
|
|
|
deleted_size_(0),
|
|
|
|
closed_(false),
|
|
|
|
can_be_deleted_(false),
|
|
|
|
gc_once_after_open_(false),
|
|
|
|
ttl_range_(std::make_pair(0, 0)),
|
|
|
|
time_range_(std::make_pair(0, 0)),
|
Blob DB: Inline small values in base DB
Summary:
Adding the `min_blob_size` option to allow storing small values in base db (in LSM tree) together with the key. The goal is to improve performance for small values, while taking advantage of blob db's low write amplification for large values.
Also adding expiration timestamp to blob index. It will be useful to evict stale blob indexes in base db by adding a compaction filter. I'll work on the compaction filter in future patches.
See blob_index.h for the new blob index format. There are 4 cases when writing a new key:
* small value w/o TTL: put in base db as normal value (i.e. ValueType::kTypeValue)
* small value w/ TTL: put (type, expiration, value) to base db.
* large value w/o TTL: write value to blob log and put (type, file, offset, size, compression) to base db.
* large value w/TTL: write value to blob log and put (type, expiration, file, offset, size, compression) to base db.
Closes https://github.com/facebook/rocksdb/pull/3066
Differential Revision: D6142115
Pulled By: yiwu-arbug
fbshipit-source-id: 9526e76e19f0839310a3f5f2a43772a4ad182cd0
7 years ago
|
|
|
sn_range_(std::make_pair(kMaxSequenceNumber, 0)),
|
|
|
|
last_access_(-1),
|
|
|
|
last_fsync_(0),
|
|
|
|
header_valid_(false) {}
|
|
|
|
|
|
|
|
BlobFile::BlobFile(const BlobDBImpl* p, const std::string& bdir, uint64_t fn)
|
|
|
|
: parent_(p),
|
|
|
|
path_to_dir_(bdir),
|
|
|
|
file_number_(fn),
|
|
|
|
blob_count_(0),
|
|
|
|
gc_epoch_(-1),
|
|
|
|
file_size_(0),
|
|
|
|
deleted_count_(0),
|
|
|
|
deleted_size_(0),
|
|
|
|
closed_(false),
|
|
|
|
can_be_deleted_(false),
|
|
|
|
gc_once_after_open_(false),
|
|
|
|
ttl_range_(std::make_pair(0, 0)),
|
|
|
|
time_range_(std::make_pair(0, 0)),
|
Blob DB: Inline small values in base DB
Summary:
Adding the `min_blob_size` option to allow storing small values in base db (in LSM tree) together with the key. The goal is to improve performance for small values, while taking advantage of blob db's low write amplification for large values.
Also adding expiration timestamp to blob index. It will be useful to evict stale blob indexes in base db by adding a compaction filter. I'll work on the compaction filter in future patches.
See blob_index.h for the new blob index format. There are 4 cases when writing a new key:
* small value w/o TTL: put in base db as normal value (i.e. ValueType::kTypeValue)
* small value w/ TTL: put (type, expiration, value) to base db.
* large value w/o TTL: write value to blob log and put (type, file, offset, size, compression) to base db.
* large value w/TTL: write value to blob log and put (type, expiration, file, offset, size, compression) to base db.
Closes https://github.com/facebook/rocksdb/pull/3066
Differential Revision: D6142115
Pulled By: yiwu-arbug
fbshipit-source-id: 9526e76e19f0839310a3f5f2a43772a4ad182cd0
7 years ago
|
|
|
sn_range_(std::make_pair(kMaxSequenceNumber, 0)),
|
|
|
|
last_access_(-1),
|
|
|
|
last_fsync_(0),
|
|
|
|
header_valid_(false) {}
|
|
|
|
|
|
|
|
BlobFile::~BlobFile() {
|
|
|
|
if (can_be_deleted_) {
|
|
|
|
std::string pn(PathName());
|
|
|
|
Status s = Env::Default()->DeleteFile(PathName());
|
|
|
|
if (!s.ok()) {
|
|
|
|
// ROCKS_LOG_INFO(db_options_.info_log,
|
|
|
|
// "File could not be deleted %s", pn.c_str());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string BlobFile::PathName() const {
|
|
|
|
return BlobFileName(path_to_dir_, file_number_);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::shared_ptr<Reader> BlobFile::OpenSequentialReader(
|
|
|
|
Env* env, const DBOptions& db_options,
|
|
|
|
const EnvOptions& env_options) const {
|
|
|
|
std::unique_ptr<SequentialFile> sfile;
|
|
|
|
Status s = env->NewSequentialFile(PathName(), &sfile, env_options);
|
|
|
|
if (!s.ok()) {
|
|
|
|
// report something here.
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::unique_ptr<SequentialFileReader> sfile_reader;
|
|
|
|
sfile_reader.reset(new SequentialFileReader(std::move(sfile)));
|
|
|
|
|
|
|
|
std::shared_ptr<Reader> log_reader =
|
|
|
|
std::make_shared<Reader>(db_options.info_log, std::move(sfile_reader));
|
|
|
|
|
|
|
|
return log_reader;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string BlobFile::DumpState() const {
|
|
|
|
char str[1000];
|
|
|
|
snprintf(str, sizeof(str),
|
|
|
|
"path: %s fn: %" PRIu64 " blob_count: %" PRIu64 " gc_epoch: %" PRIu64
|
|
|
|
" file_size: %" PRIu64 " deleted_count: %" PRIu64
|
|
|
|
" deleted_size: %" PRIu64
|
|
|
|
" closed: %d can_be_deleted: %d ttl_range: (%" PRIu64 ", %" PRIu64
|
|
|
|
") sn_range: (%" PRIu64 " %" PRIu64 "), writer: %d reader: %d",
|
|
|
|
path_to_dir_.c_str(), file_number_, blob_count_.load(),
|
|
|
|
gc_epoch_.load(), file_size_.load(), deleted_count_, deleted_size_,
|
|
|
|
closed_.load(), can_be_deleted_.load(), ttl_range_.first,
|
|
|
|
ttl_range_.second, sn_range_.first, sn_range_.second,
|
|
|
|
(!!log_writer_), (!!ra_file_reader_));
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool BlobFile::NeedsFsync(bool hard, uint64_t bytes_per_sync) const {
|
|
|
|
assert(last_fsync_ <= file_size_);
|
|
|
|
return (hard) ? file_size_ > last_fsync_
|
|
|
|
: (file_size_ - last_fsync_) >= bytes_per_sync;
|
|
|
|
}
|
|
|
|
|
|
|
|
Status BlobFile::WriteFooterAndCloseLocked() {
|
|
|
|
ROCKS_LOG_INFO(parent_->db_options_.info_log,
|
|
|
|
"File is being closed after footer %s", PathName().c_str());
|
|
|
|
|
|
|
|
BlobLogFooter footer;
|
|
|
|
footer.blob_count_ = blob_count_;
|
|
|
|
if (HasTTL()) footer.set_ttl_range(ttl_range_);
|
|
|
|
|
|
|
|
footer.sn_range_ = sn_range_;
|
|
|
|
if (HasTimestamp()) footer.set_time_range(time_range_);
|
|
|
|
|
|
|
|
// this will close the file and reset the Writable File Pointer.
|
|
|
|
Status s = log_writer_->AppendFooter(footer);
|
|
|
|
if (s.ok()) {
|
|
|
|
closed_ = true;
|
|
|
|
file_size_ += BlobLogFooter::kFooterSize;
|
|
|
|
} else {
|
|
|
|
ROCKS_LOG_ERROR(parent_->db_options_.info_log,
|
|
|
|
"Failure to read Header for blob-file %s",
|
|
|
|
PathName().c_str());
|
|
|
|
}
|
|
|
|
// delete the sequential writer
|
|
|
|
log_writer_.reset();
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
Status BlobFile::ReadFooter(BlobLogFooter* bf) {
|
|
|
|
if (file_size_ < (BlobLogHeader::kHeaderSize + BlobLogFooter::kFooterSize)) {
|
|
|
|
return Status::IOError("File does not have footer", PathName());
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t footer_offset = file_size_ - BlobLogFooter::kFooterSize;
|
|
|
|
// assume that ra_file_reader_ is valid before we enter this
|
|
|
|
assert(ra_file_reader_);
|
|
|
|
|
|
|
|
Slice result;
|
|
|
|
char scratch[BlobLogFooter::kFooterSize + 10];
|
|
|
|
Status s = ra_file_reader_->Read(footer_offset, BlobLogFooter::kFooterSize,
|
|
|
|
&result, scratch);
|
|
|
|
if (!s.ok()) return s;
|
|
|
|
if (result.size() != BlobLogFooter::kFooterSize) {
|
|
|
|
// should not happen
|
|
|
|
return Status::IOError("EOF reached before footer");
|
|
|
|
}
|
|
|
|
|
|
|
|
s = bf->DecodeFrom(result);
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
Status BlobFile::SetFromFooterLocked(const BlobLogFooter& footer) {
|
|
|
|
if (footer.HasTTL() != header_.HasTTL()) {
|
|
|
|
return Status::Corruption("has_ttl mismatch");
|
|
|
|
}
|
|
|
|
if (footer.HasTimestamp() != header_.HasTimestamp()) {
|
|
|
|
return Status::Corruption("has_ts mismatch");
|
|
|
|
}
|
|
|
|
|
|
|
|
// assume that file has been fully fsync'd
|
|
|
|
last_fsync_.store(file_size_);
|
|
|
|
blob_count_ = footer.GetBlobCount();
|
|
|
|
ttl_range_ = footer.GetTTLRange();
|
|
|
|
time_range_ = footer.GetTimeRange();
|
|
|
|
sn_range_ = footer.GetSNRange();
|
|
|
|
closed_ = true;
|
|
|
|
|
|
|
|
return Status::OK();
|
|
|
|
}
|
|
|
|
|
|
|
|
void BlobFile::Fsync() {
|
|
|
|
if (log_writer_.get()) {
|
|
|
|
log_writer_->Sync();
|
|
|
|
last_fsync_.store(file_size_.load());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void BlobFile::CloseRandomAccessLocked() {
|
|
|
|
ra_file_reader_.reset();
|
|
|
|
last_access_ = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::shared_ptr<RandomAccessFileReader> BlobFile::GetOrOpenRandomAccessReader(
|
|
|
|
Env* env, const EnvOptions& env_options, bool* fresh_open) {
|
|
|
|
*fresh_open = false;
|
|
|
|
int64_t current_time = 0;
|
|
|
|
env->GetCurrentTime(¤t_time);
|
|
|
|
last_access_.store(current_time);
|
|
|
|
|
|
|
|
{
|
|
|
|
ReadLock lockbfile_r(&mutex_);
|
|
|
|
if (ra_file_reader_) return ra_file_reader_;
|
|
|
|
}
|
|
|
|
|
|
|
|
WriteLock lockbfile_w(&mutex_);
|
|
|
|
if (ra_file_reader_) return ra_file_reader_;
|
|
|
|
|
|
|
|
std::unique_ptr<RandomAccessFile> rfile;
|
|
|
|
Status s = env->NewRandomAccessFile(PathName(), &rfile, env_options);
|
|
|
|
if (!s.ok()) {
|
|
|
|
ROCKS_LOG_ERROR(parent_->db_options_.info_log,
|
|
|
|
"Failed to open blob file for random-read: %s status: '%s'"
|
|
|
|
" exists: '%s'",
|
|
|
|
PathName().c_str(), s.ToString().c_str(),
|
|
|
|
env->FileExists(PathName()).ToString().c_str());
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
ra_file_reader_ = std::make_shared<RandomAccessFileReader>(std::move(rfile),
|
|
|
|
PathName());
|
|
|
|
*fresh_open = true;
|
|
|
|
return ra_file_reader_;
|
|
|
|
}
|
|
|
|
|
|
|
|
ColumnFamilyHandle* BlobFile::GetColumnFamily(DB* db) {
|
|
|
|
return db->DefaultColumnFamily();
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace blob_db
|
|
|
|
} // namespace rocksdb
|
|
|
|
#endif // ROCKSDB_LITE
|