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).
|
2014-03-24 05:49:14 +01:00
|
|
|
|
|
|
|
#include "util/sync_point.h"
|
2018-03-23 20:48:45 +01:00
|
|
|
#include "util/sync_point_impl.h"
|
Move rate_limiter, write buffering, most perf context instrumentation and most random kill out of Env
Summary: We want to keep Env a think layer for better portability. Less platform dependent codes should be moved out of Env. In this patch, I create a wrapper of file readers and writers, and put rate limiting, write buffering, as well as most perf context instrumentation and random kill out of Env. It will make it easier to maintain multiple Env in the future.
Test Plan: Run all existing unit tests.
Reviewers: anthony, kradhakrishnan, IslamAbdelRahman, yhchiang, igor
Reviewed By: igor
Subscribers: leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D42321
2015-07-18 01:16:11 +02:00
|
|
|
|
|
|
|
int rocksdb_kill_odds = 0;
|
2015-10-14 23:08:50 +02:00
|
|
|
std::vector<std::string> rocksdb_kill_prefix_blacklist;
|
2014-03-24 05:49:14 +01:00
|
|
|
|
2014-04-17 19:49:58 +02:00
|
|
|
#ifndef NDEBUG
|
2014-03-24 05:49:14 +01:00
|
|
|
namespace rocksdb {
|
|
|
|
|
|
|
|
SyncPoint* SyncPoint::GetInstance() {
|
|
|
|
static SyncPoint sync_point;
|
|
|
|
return &sync_point;
|
|
|
|
}
|
|
|
|
|
2018-03-23 20:48:45 +01:00
|
|
|
SyncPoint::SyncPoint() :
|
|
|
|
impl_(new Data) {
|
2014-03-24 05:49:14 +01:00
|
|
|
}
|
|
|
|
|
2018-03-23 20:48:45 +01:00
|
|
|
SyncPoint:: ~SyncPoint() {
|
|
|
|
delete impl_;
|
2016-07-07 20:29:14 +02:00
|
|
|
}
|
|
|
|
|
2018-03-23 20:48:45 +01:00
|
|
|
void SyncPoint::LoadDependency(const std::vector<SyncPointPair>& dependencies) {
|
|
|
|
impl_->LoadDependency(dependencies);
|
2014-03-24 05:49:14 +01:00
|
|
|
}
|
|
|
|
|
2018-03-23 20:48:45 +01:00
|
|
|
void SyncPoint::LoadDependencyAndMarkers(
|
|
|
|
const std::vector<SyncPointPair>& dependencies,
|
|
|
|
const std::vector<SyncPointPair>& markers) {
|
|
|
|
impl_->LoadDependencyAndMarkers(dependencies, markers);
|
options.level_compaction_dynamic_level_bytes to allow RocksDB to pick size bases of levels dynamically.
Summary:
When having fixed max_bytes_for_level_base, the ratio of size of largest level and the second one can range from 0 to the multiplier. This makes LSM tree frequently irregular and unpredictable. It can also cause poor space amplification in some cases.
In this improvement (proposed by Igor Kabiljo), we introduce a parameter option.level_compaction_use_dynamic_max_bytes. When turning it on, RocksDB is free to pick a level base in the range of (options.max_bytes_for_level_base/options.max_bytes_for_level_multiplier, options.max_bytes_for_level_base] so that real level ratios are close to options.max_bytes_for_level_multiplier.
Test Plan: New unit tests and pass tests suites including valgrind.
Reviewers: MarkCallaghan, rven, yhchiang, igor, ikabiljo
Reviewed By: ikabiljo
Subscribers: yoshinorim, ikabiljo, dhruba, leveldb
Differential Revision: https://reviews.facebook.net/D31437
2015-02-05 20:44:17 +01:00
|
|
|
}
|
|
|
|
|
2018-03-23 20:48:45 +01:00
|
|
|
void SyncPoint::SetCallBack(const std::string& point,
|
|
|
|
const std::function<void(void*)>& callback) {
|
|
|
|
impl_->SetCallBack(point, callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SyncPoint::ClearCallBack(const std::string& point) {
|
|
|
|
impl_->ClearCallBack(point);
|
2017-05-23 03:40:41 +02:00
|
|
|
}
|
|
|
|
|
options.level_compaction_dynamic_level_bytes to allow RocksDB to pick size bases of levels dynamically.
Summary:
When having fixed max_bytes_for_level_base, the ratio of size of largest level and the second one can range from 0 to the multiplier. This makes LSM tree frequently irregular and unpredictable. It can also cause poor space amplification in some cases.
In this improvement (proposed by Igor Kabiljo), we introduce a parameter option.level_compaction_use_dynamic_max_bytes. When turning it on, RocksDB is free to pick a level base in the range of (options.max_bytes_for_level_base/options.max_bytes_for_level_multiplier, options.max_bytes_for_level_base] so that real level ratios are close to options.max_bytes_for_level_multiplier.
Test Plan: New unit tests and pass tests suites including valgrind.
Reviewers: MarkCallaghan, rven, yhchiang, igor, ikabiljo
Reviewed By: ikabiljo
Subscribers: yoshinorim, ikabiljo, dhruba, leveldb
Differential Revision: https://reviews.facebook.net/D31437
2015-02-05 20:44:17 +01:00
|
|
|
void SyncPoint::ClearAllCallBacks() {
|
2018-03-23 20:48:45 +01:00
|
|
|
impl_->ClearAllCallBacks();
|
options.level_compaction_dynamic_level_bytes to allow RocksDB to pick size bases of levels dynamically.
Summary:
When having fixed max_bytes_for_level_base, the ratio of size of largest level and the second one can range from 0 to the multiplier. This makes LSM tree frequently irregular and unpredictable. It can also cause poor space amplification in some cases.
In this improvement (proposed by Igor Kabiljo), we introduce a parameter option.level_compaction_use_dynamic_max_bytes. When turning it on, RocksDB is free to pick a level base in the range of (options.max_bytes_for_level_base/options.max_bytes_for_level_multiplier, options.max_bytes_for_level_base] so that real level ratios are close to options.max_bytes_for_level_multiplier.
Test Plan: New unit tests and pass tests suites including valgrind.
Reviewers: MarkCallaghan, rven, yhchiang, igor, ikabiljo
Reviewed By: ikabiljo
Subscribers: yoshinorim, ikabiljo, dhruba, leveldb
Differential Revision: https://reviews.facebook.net/D31437
2015-02-05 20:44:17 +01:00
|
|
|
}
|
|
|
|
|
2014-03-24 05:49:14 +01:00
|
|
|
void SyncPoint::EnableProcessing() {
|
2018-03-23 20:48:45 +01:00
|
|
|
impl_->EnableProcessing();
|
2014-03-24 05:49:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void SyncPoint::DisableProcessing() {
|
2018-03-23 20:48:45 +01:00
|
|
|
impl_->DisableProcessing();
|
2014-03-24 05:49:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void SyncPoint::ClearTrace() {
|
2018-03-23 20:48:45 +01:00
|
|
|
impl_->ClearTrace();
|
2016-07-07 20:29:14 +02:00
|
|
|
}
|
|
|
|
|
2015-04-14 10:55:19 +02:00
|
|
|
void SyncPoint::Process(const std::string& point, void* cb_arg) {
|
2018-03-23 20:48:45 +01:00
|
|
|
impl_->Process(point, cb_arg);
|
2014-03-24 05:49:14 +01:00
|
|
|
}
|
2018-03-23 20:48:45 +01:00
|
|
|
|
2014-03-24 05:49:14 +01:00
|
|
|
} // namespace rocksdb
|
2014-04-17 19:49:58 +02:00
|
|
|
#endif // NDEBUG
|