2016-02-10 00:12:00 +01: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).
|
2015-09-23 21:42:43 +02:00
|
|
|
|
|
|
|
#include "rocksdb/sst_file_writer.h"
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include "db/dbformat.h"
|
|
|
|
#include "rocksdb/table.h"
|
|
|
|
#include "table/block_based_table_builder.h"
|
2016-10-19 01:59:37 +02:00
|
|
|
#include "table/sst_file_writer_collectors.h"
|
2015-09-23 21:42:43 +02:00
|
|
|
#include "util/file_reader_writer.h"
|
2016-12-29 23:51:52 +01:00
|
|
|
#include "util/sync_point.h"
|
2015-09-23 21:42:43 +02:00
|
|
|
|
|
|
|
namespace rocksdb {
|
|
|
|
|
|
|
|
const std::string ExternalSstFilePropertyNames::kVersion =
|
|
|
|
"rocksdb.external_sst_file.version";
|
2016-10-19 01:59:37 +02:00
|
|
|
const std::string ExternalSstFilePropertyNames::kGlobalSeqno =
|
|
|
|
"rocksdb.external_sst_file.global_seqno";
|
2017-02-28 20:05:08 +01:00
|
|
|
|
|
|
|
#ifndef ROCKSDB_LITE
|
|
|
|
|
2016-12-29 23:51:52 +01:00
|
|
|
const size_t kFadviseTrigger = 1024 * 1024; // 1MB
|
2015-09-23 21:42:43 +02:00
|
|
|
|
|
|
|
struct SstFileWriter::Rep {
|
2016-05-17 22:11:56 +02:00
|
|
|
Rep(const EnvOptions& _env_options, const Options& options,
|
2017-05-23 20:36:06 +02:00
|
|
|
Env::IOPriority _io_priority, const Comparator* _user_comparator,
|
2018-01-22 23:37:37 +01:00
|
|
|
ColumnFamilyHandle* _cfh, bool _invalidate_page_cache, bool _skip_filters)
|
2015-09-23 21:42:43 +02:00
|
|
|
: env_options(_env_options),
|
2016-05-17 22:11:56 +02:00
|
|
|
ioptions(options),
|
2016-09-14 06:11:59 +02:00
|
|
|
mutable_cf_options(options),
|
2017-05-23 20:36:06 +02:00
|
|
|
io_priority(_io_priority),
|
2016-12-05 23:16:23 +01:00
|
|
|
internal_comparator(_user_comparator),
|
2016-12-29 23:51:52 +01:00
|
|
|
cfh(_cfh),
|
|
|
|
invalidate_page_cache(_invalidate_page_cache),
|
2018-01-22 23:37:37 +01:00
|
|
|
last_fadvise_size(0),
|
|
|
|
skip_filters(_skip_filters) {}
|
2015-09-23 21:42:43 +02:00
|
|
|
|
|
|
|
std::unique_ptr<WritableFileWriter> file_writer;
|
|
|
|
std::unique_ptr<TableBuilder> builder;
|
|
|
|
EnvOptions env_options;
|
|
|
|
ImmutableCFOptions ioptions;
|
2016-05-17 22:11:56 +02:00
|
|
|
MutableCFOptions mutable_cf_options;
|
2017-05-23 20:36:06 +02:00
|
|
|
Env::IOPriority io_priority;
|
2015-09-23 21:42:43 +02:00
|
|
|
InternalKeyComparator internal_comparator;
|
|
|
|
ExternalSstFileInfo file_info;
|
2016-06-13 18:57:43 +02:00
|
|
|
InternalKey ikey;
|
2016-12-05 23:16:23 +01:00
|
|
|
std::string column_family_name;
|
|
|
|
ColumnFamilyHandle* cfh;
|
2016-12-29 23:51:52 +01:00
|
|
|
// If true, We will give the OS a hint that this file pages is not needed
|
2018-03-08 19:18:34 +01:00
|
|
|
// every time we write 1MB to the file.
|
2016-12-29 23:51:52 +01:00
|
|
|
bool invalidate_page_cache;
|
2017-05-23 20:36:06 +02:00
|
|
|
// The size of the file during the last time we called Fadvise to remove
|
2016-12-29 23:51:52 +01:00
|
|
|
// cached pages from page cache.
|
|
|
|
uint64_t last_fadvise_size;
|
2018-01-22 23:37:37 +01:00
|
|
|
bool skip_filters;
|
2017-05-26 21:05:19 +02:00
|
|
|
Status Add(const Slice& user_key, const Slice& value,
|
|
|
|
const ValueType value_type) {
|
|
|
|
if (!builder) {
|
|
|
|
return Status::InvalidArgument("File is not opened");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (file_info.num_entries == 0) {
|
|
|
|
file_info.smallest_key.assign(user_key.data(), user_key.size());
|
|
|
|
} else {
|
|
|
|
if (internal_comparator.user_comparator()->Compare(
|
|
|
|
user_key, file_info.largest_key) <= 0) {
|
|
|
|
// Make sure that keys are added in order
|
|
|
|
return Status::InvalidArgument("Keys must be added in order");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO(tec) : For external SST files we could omit the seqno and type.
|
|
|
|
switch (value_type) {
|
|
|
|
case ValueType::kTypeValue:
|
|
|
|
ikey.Set(user_key, 0 /* Sequence Number */,
|
|
|
|
ValueType::kTypeValue /* Put */);
|
|
|
|
break;
|
|
|
|
case ValueType::kTypeMerge:
|
|
|
|
ikey.Set(user_key, 0 /* Sequence Number */,
|
|
|
|
ValueType::kTypeMerge /* Merge */);
|
|
|
|
break;
|
|
|
|
case ValueType::kTypeDeletion:
|
|
|
|
ikey.Set(user_key, 0 /* Sequence Number */,
|
|
|
|
ValueType::kTypeDeletion /* Delete */);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return Status::InvalidArgument("Value type is not supported");
|
|
|
|
}
|
|
|
|
builder->Add(ikey.Encode(), value);
|
|
|
|
|
|
|
|
// update file info
|
|
|
|
file_info.num_entries++;
|
|
|
|
file_info.largest_key.assign(user_key.data(), user_key.size());
|
|
|
|
file_info.file_size = builder->FileSize();
|
|
|
|
|
|
|
|
InvalidatePageCache(false /* closing */);
|
|
|
|
|
|
|
|
return Status::OK();
|
|
|
|
}
|
|
|
|
|
|
|
|
void InvalidatePageCache(bool closing) {
|
|
|
|
if (invalidate_page_cache == false) {
|
|
|
|
// Fadvise disabled
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
uint64_t bytes_since_last_fadvise =
|
|
|
|
builder->FileSize() - last_fadvise_size;
|
|
|
|
if (bytes_since_last_fadvise > kFadviseTrigger || closing) {
|
|
|
|
TEST_SYNC_POINT_CALLBACK("SstFileWriter::Rep::InvalidatePageCache",
|
|
|
|
&(bytes_since_last_fadvise));
|
|
|
|
// Tell the OS that we dont need this file in page cache
|
|
|
|
file_writer->InvalidateCache(0, 0);
|
|
|
|
last_fadvise_size = builder->FileSize();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-23 21:42:43 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
SstFileWriter::SstFileWriter(const EnvOptions& env_options,
|
2016-05-17 22:11:56 +02:00
|
|
|
const Options& options,
|
2016-12-05 23:16:23 +01:00
|
|
|
const Comparator* user_comparator,
|
2016-12-29 23:51:52 +01:00
|
|
|
ColumnFamilyHandle* column_family,
|
2017-05-23 20:36:06 +02:00
|
|
|
bool invalidate_page_cache,
|
2018-01-22 23:37:37 +01:00
|
|
|
Env::IOPriority io_priority, bool skip_filters)
|
2017-05-23 20:36:06 +02:00
|
|
|
: rep_(new Rep(env_options, options, io_priority, user_comparator,
|
2018-01-22 23:37:37 +01:00
|
|
|
column_family, invalidate_page_cache, skip_filters)) {
|
2016-12-29 23:51:52 +01:00
|
|
|
rep_->file_info.file_size = 0;
|
|
|
|
}
|
2015-09-23 21:42:43 +02:00
|
|
|
|
2016-11-13 05:03:39 +01:00
|
|
|
SstFileWriter::~SstFileWriter() {
|
|
|
|
if (rep_->builder) {
|
|
|
|
// User did not call Finish() or Finish() failed, we need to
|
|
|
|
// abandon the builder.
|
|
|
|
rep_->builder->Abandon();
|
|
|
|
}
|
|
|
|
}
|
2015-09-23 21:42:43 +02:00
|
|
|
|
|
|
|
Status SstFileWriter::Open(const std::string& file_path) {
|
2017-05-23 20:36:06 +02:00
|
|
|
Rep* r = rep_.get();
|
2015-09-23 21:42:43 +02:00
|
|
|
Status s;
|
|
|
|
std::unique_ptr<WritableFile> sst_file;
|
|
|
|
s = r->ioptions.env->NewWritableFile(file_path, &sst_file, r->env_options);
|
|
|
|
if (!s.ok()) {
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2017-05-23 20:36:06 +02:00
|
|
|
sst_file->SetIOPriority(r->io_priority);
|
|
|
|
|
2016-06-20 20:26:25 +02:00
|
|
|
CompressionType compression_type;
|
|
|
|
if (r->ioptions.bottommost_compression != kDisableCompressionOption) {
|
|
|
|
compression_type = r->ioptions.bottommost_compression;
|
|
|
|
} else if (!r->ioptions.compression_per_level.empty()) {
|
2015-09-23 21:42:43 +02:00
|
|
|
// Use the compression of the last level if we have per level compression
|
|
|
|
compression_type = *(r->ioptions.compression_per_level.rbegin());
|
2016-06-20 20:26:25 +02:00
|
|
|
} else {
|
|
|
|
compression_type = r->mutable_cf_options.compression;
|
2015-09-23 21:42:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<std::unique_ptr<IntTblPropCollectorFactory>>
|
|
|
|
int_tbl_prop_collector_factories;
|
2016-08-20 01:17:56 +02:00
|
|
|
|
|
|
|
// SstFileWriter properties collector to add SstFileWriter version.
|
2015-09-23 21:42:43 +02:00
|
|
|
int_tbl_prop_collector_factories.emplace_back(
|
2016-10-19 01:59:37 +02:00
|
|
|
new SstFileWriterPropertiesCollectorFactory(2 /* version */,
|
|
|
|
0 /* global_seqno*/));
|
2015-09-23 21:42:43 +02:00
|
|
|
|
2016-08-20 01:17:56 +02:00
|
|
|
// User collector factories
|
|
|
|
auto user_collector_factories =
|
|
|
|
r->ioptions.table_properties_collector_factories;
|
|
|
|
for (size_t i = 0; i < user_collector_factories.size(); i++) {
|
|
|
|
int_tbl_prop_collector_factories.emplace_back(
|
|
|
|
new UserKeyTablePropertiesCollectorFactory(
|
|
|
|
user_collector_factories[i]));
|
|
|
|
}
|
2016-09-18 07:30:43 +02:00
|
|
|
int unknown_level = -1;
|
2016-12-05 23:16:23 +01:00
|
|
|
uint32_t cf_id;
|
|
|
|
|
|
|
|
if (r->cfh != nullptr) {
|
|
|
|
// user explicitly specified that this file will be ingested into cfh,
|
|
|
|
// we can persist this information in the file.
|
|
|
|
cf_id = r->cfh->GetID();
|
|
|
|
r->column_family_name = r->cfh->GetName();
|
|
|
|
} else {
|
|
|
|
r->column_family_name = "";
|
|
|
|
cf_id = TablePropertiesCollectorFactory::Context::kUnknownColumnFamily;
|
|
|
|
}
|
|
|
|
|
2015-09-23 21:42:43 +02:00
|
|
|
TableBuilderOptions table_builder_options(
|
|
|
|
r->ioptions, r->internal_comparator, &int_tbl_prop_collector_factories,
|
Shared dictionary compression using reference block
Summary:
This adds a new metablock containing a shared dictionary that is used
to compress all data blocks in the SST file. The size of the shared dictionary
is configurable in CompressionOptions and defaults to 0. It's currently only
used for zlib/lz4/lz4hc, but the block will be stored in the SST regardless of
the compression type if the user chooses a nonzero dictionary size.
During compaction, computes the dictionary by randomly sampling the first
output file in each subcompaction. It pre-computes the intervals to sample
by assuming the output file will have the maximum allowable length. In case
the file is smaller, some of the pre-computed sampling intervals can be beyond
end-of-file, in which case we skip over those samples and the dictionary will
be a bit smaller. After the dictionary is generated using the first file in a
subcompaction, it is loaded into the compression library before writing each
block in each subsequent file of that subcompaction.
On the read path, gets the dictionary from the metablock, if it exists. Then,
loads that dictionary into the compression library before reading each block.
Test Plan: new unit test
Reviewers: yhchiang, IslamAbdelRahman, cyan, sdong
Reviewed By: sdong
Subscribers: andrewkr, yoshinorim, kradhakrishnan, dhruba, leveldb
Differential Revision: https://reviews.facebook.net/D52287
2016-04-28 02:36:03 +02:00
|
|
|
compression_type, r->ioptions.compression_opts,
|
2018-01-22 23:37:37 +01:00
|
|
|
nullptr /* compression_dict */, r->skip_filters, r->column_family_name,
|
|
|
|
unknown_level);
|
2015-09-23 21:42:43 +02:00
|
|
|
r->file_writer.reset(
|
|
|
|
new WritableFileWriter(std::move(sst_file), r->env_options));
|
2016-10-19 01:59:37 +02:00
|
|
|
|
|
|
|
// TODO(tec) : If table_factory is using compressed block cache, we will
|
|
|
|
// be adding the external sst file blocks into it, which is wasteful.
|
2015-09-23 21:42:43 +02:00
|
|
|
r->builder.reset(r->ioptions.table_factory->NewTableBuilder(
|
2016-12-05 23:16:23 +01:00
|
|
|
table_builder_options, cf_id, r->file_writer.get()));
|
2015-09-23 21:42:43 +02:00
|
|
|
|
|
|
|
r->file_info.file_path = file_path;
|
|
|
|
r->file_info.file_size = 0;
|
|
|
|
r->file_info.num_entries = 0;
|
|
|
|
r->file_info.sequence_number = 0;
|
2016-10-19 01:59:37 +02:00
|
|
|
r->file_info.version = 2;
|
2015-09-23 21:42:43 +02:00
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
Status SstFileWriter::Add(const Slice& user_key, const Slice& value) {
|
2017-05-26 21:05:19 +02:00
|
|
|
return rep_->Add(user_key, value, ValueType::kTypeValue);
|
|
|
|
}
|
2016-12-29 23:51:52 +01:00
|
|
|
|
2017-05-26 21:05:19 +02:00
|
|
|
Status SstFileWriter::Put(const Slice& user_key, const Slice& value) {
|
|
|
|
return rep_->Add(user_key, value, ValueType::kTypeValue);
|
|
|
|
}
|
2015-09-23 21:42:43 +02:00
|
|
|
|
2017-05-26 21:05:19 +02:00
|
|
|
Status SstFileWriter::Merge(const Slice& user_key, const Slice& value) {
|
|
|
|
return rep_->Add(user_key, value, ValueType::kTypeMerge);
|
|
|
|
}
|
2015-09-23 21:42:43 +02:00
|
|
|
|
2017-05-26 21:05:19 +02:00
|
|
|
Status SstFileWriter::Delete(const Slice& user_key) {
|
|
|
|
return rep_->Add(user_key, Slice(), ValueType::kTypeDeletion);
|
2015-09-23 21:42:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Status SstFileWriter::Finish(ExternalSstFileInfo* file_info) {
|
2017-05-23 20:36:06 +02:00
|
|
|
Rep* r = rep_.get();
|
2015-09-23 21:42:43 +02:00
|
|
|
if (!r->builder) {
|
|
|
|
return Status::InvalidArgument("File is not opened");
|
|
|
|
}
|
2016-01-25 22:47:07 +01:00
|
|
|
if (r->file_info.num_entries == 0) {
|
|
|
|
return Status::InvalidArgument("Cannot create sst file with no entries");
|
|
|
|
}
|
2015-09-23 21:42:43 +02:00
|
|
|
|
|
|
|
Status s = r->builder->Finish();
|
2016-12-29 23:51:52 +01:00
|
|
|
r->file_info.file_size = r->builder->FileSize();
|
|
|
|
|
2015-09-23 21:42:43 +02:00
|
|
|
if (s.ok()) {
|
2017-02-13 19:54:38 +01:00
|
|
|
s = r->file_writer->Sync(r->ioptions.use_fsync);
|
2017-05-26 21:05:19 +02:00
|
|
|
r->InvalidatePageCache(true /* closing */);
|
2015-09-23 21:42:43 +02:00
|
|
|
if (s.ok()) {
|
|
|
|
s = r->file_writer->Close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!s.ok()) {
|
|
|
|
r->ioptions.env->DeleteFile(r->file_info.file_path);
|
|
|
|
}
|
|
|
|
|
2016-12-29 23:51:52 +01:00
|
|
|
if (file_info != nullptr) {
|
2015-09-23 21:42:43 +02:00
|
|
|
*file_info = r->file_info;
|
|
|
|
}
|
|
|
|
|
|
|
|
r->builder.reset();
|
|
|
|
return s;
|
|
|
|
}
|
2016-12-17 03:26:56 +01:00
|
|
|
|
|
|
|
uint64_t SstFileWriter::FileSize() {
|
|
|
|
return rep_->file_info.file_size;
|
|
|
|
}
|
2017-02-28 20:05:08 +01:00
|
|
|
#endif // !ROCKSDB_LITE
|
|
|
|
|
2015-09-23 21:42:43 +02:00
|
|
|
} // namespace rocksdb
|