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).
|
2013-11-08 06:27:21 +01:00
|
|
|
|
|
|
|
#include "rocksdb/flush_block_policy.h"
|
2018-03-27 05:14:24 +02:00
|
|
|
#include "rocksdb/options.h"
|
2013-11-08 06:27:21 +01:00
|
|
|
#include "rocksdb/slice.h"
|
2019-05-30 23:47:29 +02:00
|
|
|
#include "table/block_based/block_builder.h"
|
2018-03-27 05:14:24 +02:00
|
|
|
#include "table/format.h"
|
2013-11-08 06:27:21 +01:00
|
|
|
|
|
|
|
#include <cassert>
|
|
|
|
|
2020-02-20 21:07:53 +01:00
|
|
|
namespace ROCKSDB_NAMESPACE {
|
2013-11-08 06:27:21 +01:00
|
|
|
|
|
|
|
// Flush block by size
|
|
|
|
class FlushBlockBySizePolicy : public FlushBlockPolicy {
|
|
|
|
public:
|
|
|
|
// @params block_size: Approximate size of user data packed per
|
|
|
|
// block.
|
|
|
|
// @params block_size_deviation: This is used to close a block before it
|
|
|
|
// reaches the configured
|
|
|
|
FlushBlockBySizePolicy(const uint64_t block_size,
|
|
|
|
const uint64_t block_size_deviation,
|
2018-03-27 05:14:24 +02:00
|
|
|
const bool align,
|
2016-06-13 18:57:43 +02:00
|
|
|
const BlockBuilder& data_block_builder)
|
|
|
|
: block_size_(block_size),
|
|
|
|
block_size_deviation_limit_(
|
|
|
|
((block_size * (100 - block_size_deviation)) + 99) / 100),
|
2018-03-27 05:14:24 +02:00
|
|
|
align_(align),
|
2016-06-13 18:57:43 +02:00
|
|
|
data_block_builder_(data_block_builder) {}
|
2013-11-08 06:27:21 +01:00
|
|
|
|
2019-02-14 22:52:47 +01:00
|
|
|
bool Update(const Slice& key, const Slice& value) override {
|
2013-11-12 06:05:16 +01:00
|
|
|
// it makes no sense to flush when the data block is empty
|
|
|
|
if (data_block_builder_.empty()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-11-08 06:27:21 +01:00
|
|
|
auto curr_size = data_block_builder_.CurrentSizeEstimate();
|
|
|
|
|
|
|
|
// Do flush if one of the below two conditions is true:
|
|
|
|
// 1) if the current estimated size already exceeds the block size,
|
|
|
|
// 2) block_size_deviation is set and the estimated size after appending
|
|
|
|
// the kv will exceed the block size and the current size is under the
|
|
|
|
// the deviation.
|
|
|
|
return curr_size >= block_size_ || BlockAlmostFull(key, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
bool BlockAlmostFull(const Slice& key, const Slice& value) const {
|
2016-06-13 18:57:43 +02:00
|
|
|
if (block_size_deviation_limit_ == 0) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-11-08 06:27:21 +01:00
|
|
|
const auto curr_size = data_block_builder_.CurrentSizeEstimate();
|
2018-03-27 05:14:24 +02:00
|
|
|
auto estimated_size_after =
|
|
|
|
data_block_builder_.EstimateSizeAfterKV(key, value);
|
|
|
|
|
|
|
|
if (align_) {
|
|
|
|
estimated_size_after += kBlockTrailerSize;
|
|
|
|
return estimated_size_after > block_size_;
|
|
|
|
}
|
2013-11-08 06:27:21 +01:00
|
|
|
|
2016-06-13 18:57:43 +02:00
|
|
|
return estimated_size_after > block_size_ &&
|
|
|
|
curr_size > block_size_deviation_limit_;
|
2013-11-08 06:27:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
const uint64_t block_size_;
|
2016-06-13 18:57:43 +02:00
|
|
|
const uint64_t block_size_deviation_limit_;
|
2018-03-27 05:14:24 +02:00
|
|
|
const bool align_;
|
2013-11-08 06:27:21 +01:00
|
|
|
const BlockBuilder& data_block_builder_;
|
|
|
|
};
|
|
|
|
|
|
|
|
FlushBlockPolicy* FlushBlockBySizePolicyFactory::NewFlushBlockPolicy(
|
2014-08-25 23:22:05 +02:00
|
|
|
const BlockBasedTableOptions& table_options,
|
|
|
|
const BlockBuilder& data_block_builder) const {
|
2014-03-01 01:39:27 +01:00
|
|
|
return new FlushBlockBySizePolicy(
|
2014-08-25 23:22:05 +02:00
|
|
|
table_options.block_size, table_options.block_size_deviation,
|
2018-03-27 05:14:24 +02:00
|
|
|
table_options.block_align, data_block_builder);
|
2013-11-08 06:27:21 +01:00
|
|
|
}
|
|
|
|
|
2017-03-28 20:56:56 +02:00
|
|
|
FlushBlockPolicy* FlushBlockBySizePolicyFactory::NewFlushBlockPolicy(
|
|
|
|
const uint64_t size, const int deviation,
|
|
|
|
const BlockBuilder& data_block_builder) {
|
2018-03-27 05:14:24 +02:00
|
|
|
return new FlushBlockBySizePolicy(size, deviation, false, data_block_builder);
|
2017-03-28 20:56:56 +02:00
|
|
|
}
|
|
|
|
|
2020-02-20 21:07:53 +01:00
|
|
|
} // namespace ROCKSDB_NAMESPACE
|