2019-07-24 00:57:43 +02:00
|
|
|
// 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).
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "table/block_based/uncompression_dict_reader.h"
|
|
|
|
#include "monitoring/perf_context_imp.h"
|
|
|
|
#include "table/block_based/block_based_table_reader.h"
|
|
|
|
#include "util/compression.h"
|
|
|
|
|
2020-02-20 21:07:53 +01:00
|
|
|
namespace ROCKSDB_NAMESPACE {
|
2019-07-24 00:57:43 +02:00
|
|
|
|
|
|
|
Status UncompressionDictReader::Create(
|
|
|
|
const BlockBasedTable* table, FilePrefetchBuffer* prefetch_buffer,
|
|
|
|
bool use_cache, bool prefetch, bool pin,
|
|
|
|
BlockCacheLookupContext* lookup_context,
|
|
|
|
std::unique_ptr<UncompressionDictReader>* uncompression_dict_reader) {
|
|
|
|
assert(table);
|
|
|
|
assert(table->get_rep());
|
|
|
|
assert(!pin || prefetch);
|
|
|
|
assert(uncompression_dict_reader);
|
|
|
|
|
2019-08-23 17:25:52 +02:00
|
|
|
CachableEntry<UncompressionDict> uncompression_dict;
|
2019-07-24 00:57:43 +02:00
|
|
|
if (prefetch || !use_cache) {
|
2019-08-23 17:25:52 +02:00
|
|
|
const Status s = ReadUncompressionDictionary(
|
2019-08-15 03:13:14 +02:00
|
|
|
table, prefetch_buffer, ReadOptions(), use_cache,
|
2019-08-23 17:25:52 +02:00
|
|
|
nullptr /* get_context */, lookup_context, &uncompression_dict);
|
2019-07-24 00:57:43 +02:00
|
|
|
if (!s.ok()) {
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (use_cache && !pin) {
|
2019-08-23 17:25:52 +02:00
|
|
|
uncompression_dict.Reset();
|
2019-07-24 00:57:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
uncompression_dict_reader->reset(
|
2019-08-23 17:25:52 +02:00
|
|
|
new UncompressionDictReader(table, std::move(uncompression_dict)));
|
2019-07-24 00:57:43 +02:00
|
|
|
|
|
|
|
return Status::OK();
|
|
|
|
}
|
|
|
|
|
2019-08-23 17:25:52 +02:00
|
|
|
Status UncompressionDictReader::ReadUncompressionDictionary(
|
2019-07-24 00:57:43 +02:00
|
|
|
const BlockBasedTable* table, FilePrefetchBuffer* prefetch_buffer,
|
2019-08-15 03:13:14 +02:00
|
|
|
const ReadOptions& read_options, bool use_cache, GetContext* get_context,
|
2019-07-24 00:57:43 +02:00
|
|
|
BlockCacheLookupContext* lookup_context,
|
2019-08-23 17:25:52 +02:00
|
|
|
CachableEntry<UncompressionDict>* uncompression_dict) {
|
2019-07-24 00:57:43 +02:00
|
|
|
// TODO: add perf counter for compression dictionary read time
|
|
|
|
|
|
|
|
assert(table);
|
2019-08-23 17:25:52 +02:00
|
|
|
assert(uncompression_dict);
|
|
|
|
assert(uncompression_dict->IsEmpty());
|
2019-07-24 00:57:43 +02:00
|
|
|
|
|
|
|
const BlockBasedTable::Rep* const rep = table->get_rep();
|
|
|
|
assert(rep);
|
|
|
|
assert(!rep->compression_dict_handle.IsNull());
|
|
|
|
|
|
|
|
const Status s = table->RetrieveBlock(
|
|
|
|
prefetch_buffer, read_options, rep->compression_dict_handle,
|
2019-08-23 17:25:52 +02:00
|
|
|
UncompressionDict::GetEmptyDict(), uncompression_dict,
|
2019-08-15 03:13:14 +02:00
|
|
|
BlockType::kCompressionDictionary, get_context, lookup_context,
|
|
|
|
/* for_compaction */ false, use_cache);
|
2019-07-24 00:57:43 +02:00
|
|
|
|
|
|
|
if (!s.ok()) {
|
|
|
|
ROCKS_LOG_WARN(
|
|
|
|
rep->ioptions.info_log,
|
|
|
|
"Encountered error while reading data from compression dictionary "
|
|
|
|
"block %s",
|
|
|
|
s.ToString().c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2019-08-23 17:25:52 +02:00
|
|
|
Status UncompressionDictReader::GetOrReadUncompressionDictionary(
|
2019-07-24 00:57:43 +02:00
|
|
|
FilePrefetchBuffer* prefetch_buffer, bool no_io, GetContext* get_context,
|
|
|
|
BlockCacheLookupContext* lookup_context,
|
2019-08-23 17:25:52 +02:00
|
|
|
CachableEntry<UncompressionDict>* uncompression_dict) const {
|
|
|
|
assert(uncompression_dict);
|
2019-07-24 00:57:43 +02:00
|
|
|
|
2019-08-23 17:25:52 +02:00
|
|
|
if (!uncompression_dict_.IsEmpty()) {
|
|
|
|
uncompression_dict->SetUnownedValue(uncompression_dict_.GetValue());
|
2019-07-24 00:57:43 +02:00
|
|
|
return Status::OK();
|
|
|
|
}
|
|
|
|
|
|
|
|
ReadOptions read_options;
|
|
|
|
if (no_io) {
|
|
|
|
read_options.read_tier = kBlockCacheTier;
|
|
|
|
}
|
|
|
|
|
2019-08-23 17:25:52 +02:00
|
|
|
return ReadUncompressionDictionary(table_, prefetch_buffer, read_options,
|
|
|
|
cache_dictionary_blocks(), get_context,
|
|
|
|
lookup_context, uncompression_dict);
|
2019-07-24 00:57:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
size_t UncompressionDictReader::ApproximateMemoryUsage() const {
|
2019-08-23 17:25:52 +02:00
|
|
|
assert(!uncompression_dict_.GetOwnValue() ||
|
|
|
|
uncompression_dict_.GetValue() != nullptr);
|
|
|
|
size_t usage = uncompression_dict_.GetOwnValue()
|
|
|
|
? uncompression_dict_.GetValue()->ApproximateMemoryUsage()
|
|
|
|
: 0;
|
2019-07-24 00:57:43 +02:00
|
|
|
|
|
|
|
#ifdef ROCKSDB_MALLOC_USABLE_SIZE
|
2019-09-20 21:00:55 +02:00
|
|
|
usage += malloc_usable_size(const_cast<UncompressionDictReader*>(this));
|
2019-07-24 00:57:43 +02:00
|
|
|
#else
|
2019-09-20 21:00:55 +02:00
|
|
|
usage += sizeof(*this);
|
2019-07-24 00:57:43 +02:00
|
|
|
#endif // ROCKSDB_MALLOC_USABLE_SIZE
|
|
|
|
|
2019-09-20 21:00:55 +02:00
|
|
|
return usage;
|
2019-07-24 00:57:43 +02:00
|
|
|
}
|
|
|
|
|
2019-08-15 03:13:14 +02:00
|
|
|
bool UncompressionDictReader::cache_dictionary_blocks() const {
|
|
|
|
assert(table_);
|
|
|
|
assert(table_->get_rep());
|
|
|
|
|
|
|
|
return table_->get_rep()->table_options.cache_index_and_filter_blocks;
|
|
|
|
}
|
|
|
|
|
2020-02-20 21:07:53 +01:00
|
|
|
} // namespace ROCKSDB_NAMESPACE
|