mirror of
https://github.com/facebook/rocksdb.git
synced 2026-07-07 14:47:40 +08:00
Compare commits
12 Commits
f2c0eb41ef
...
8.4.fb
| Author | SHA1 | Date | |
|---|---|---|---|
| ffcfbaa584 | |||
| f2cbed0cc4 | |||
| e283b751a6 | |||
| c15ee5a758 | |||
| 5f981e1145 | |||
| 732ab9a131 | |||
| 4bef82ad85 | |||
| 935ddf6469 | |||
| 2aed669e36 | |||
| 30a98ee159 | |||
| 4db32f3df9 | |||
| a5f08293d8 |
+42
@@ -1,6 +1,48 @@
|
|||||||
# Rocksdb Change Log
|
# Rocksdb Change Log
|
||||||
> NOTE: Entries for next release do not go here. Follow instructions in `unreleased_history/README.txt`
|
> NOTE: Entries for next release do not go here. Follow instructions in `unreleased_history/README.txt`
|
||||||
|
|
||||||
|
## 8.4.4 (09/01/2023)
|
||||||
|
### Bug Fixes
|
||||||
|
* Fix a bug where if there is an error reading from offset 0 of a file from L1+ and that the file is not the first file in the sorted run, data can be lost in compaction and read/scan can return incorrect results.
|
||||||
|
* Fix a bug where iterator may return incorrect result for DeleteRange() users if there was an error reading from a file.
|
||||||
|
* Fixed a race condition in `GenericRateLimiter` that could cause it to stop granting requests
|
||||||
|
|
||||||
|
## 8.4.3 (07/27/2023)
|
||||||
|
### Bug Fixes
|
||||||
|
* Fix use_after_free bug in async_io MultiReads when underlying FS enabled kFSBuffer. kFSBuffer is when underlying FS pass their own buffer instead of using RocksDB scratch in FSReadRequest.
|
||||||
|
|
||||||
|
## 8.4.0 (06/26/2023)
|
||||||
|
### New Features
|
||||||
|
* Add FSReadRequest::fs_scratch which is a data buffer allocated and provided by underlying FileSystem to RocksDB during reads, when FS wants to provide its own buffer with data instead of using RocksDB provided FSReadRequest::scratch. This can help in cpu optimization by avoiding copy from file system's buffer to RocksDB buffer. More details on how to use/enable it in file_system.h. Right now its supported only for MultiReads(async + sync) with non direct io.
|
||||||
|
* Start logging non-zero user-defined timestamp sizes in WAL to signal user key format in subsequent records and use it during recovery. This change will break recovery from WAL files written by early versions that contain user-defined timestamps. The workaround is to ensure there are no WAL files to recover (i.e. by flushing before close) before upgrade.
|
||||||
|
* Added new property "rocksdb.obsolete-sst-files-size-property" that reports the size of SST files that have become obsolete but have not yet been deleted or scheduled for deletion
|
||||||
|
* Start to record the value of the flag `AdvancedColumnFamilyOptions.persist_user_defined_timestamps` in the Manifest and table properties for a SST file when it is created. And use the recorded flag when creating a table reader for the SST file. This flag is only explicitly record if it's false.
|
||||||
|
* Add a new option OptimisticTransactionDBOptions::shared_lock_buckets that enables sharing mutexes for validating transactions between DB instances, for better balancing memory efficiency and validation contention across DB instances. Different column families and DBs also now use different hash seeds in this validation, so that the same set of key names will not contend across DBs or column families.
|
||||||
|
* Add a new ticker `rocksdb.files.marked.trash.deleted` to track the number of trash files deleted by background thread from the trash queue.
|
||||||
|
* Add an API NewTieredVolatileCache() in include/rocksdb/cache.h to allocate an instance of a block cache with a primary block cache tier and a compressed secondary cache tier. A cache of this type distributes memory reservations against the block cache, such as WriteBufferManager, table reader memory etc., proportionally across both the primary and compressed secondary cache.
|
||||||
|
* Add `WaitForCompact()` to wait for all flush and compactions jobs to finish. Jobs to wait include the unscheduled (queued, but not scheduled yet).
|
||||||
|
* Add `WriteBatch::Release()` that releases the batch's serialized data to the caller.
|
||||||
|
|
||||||
|
### Public API Changes
|
||||||
|
* Add C API `rocksdb_options_add_compact_on_deletion_collector_factory_del_ratio`.
|
||||||
|
* change the FileSystem::use_async_io() API to SupportedOps API in order to extend it to various operations supported by underlying FileSystem. Right now it contains FSSupportedOps::kAsyncIO and FSSupportedOps::kFSBuffer. More details about FSSupportedOps in filesystem.h
|
||||||
|
* Add new tickers: `rocksdb.error.handler.bg.error.count`, `rocksdb.error.handler.bg.io.error.count`, `rocksdb.error.handler.bg.retryable.io.error.count` to replace the misspelled ones: `rocksdb.error.handler.bg.errro.count`, `rocksdb.error.handler.bg.io.errro.count`, `rocksdb.error.handler.bg.retryable.io.errro.count` ('error' instead of 'errro'). Users should switch to use the new tickers before 9.0 release as the misspelled old tickers will be completely removed then.
|
||||||
|
* Overload the API CreateColumnFamilyWithImport() to support creating ColumnFamily by importing multiple ColumnFamilies It requires that CFs should not overlap in user key range.
|
||||||
|
|
||||||
|
### Behavior Changes
|
||||||
|
* Change the default value for option `level_compaction_dynamic_level_bytes` to true. This affects users who use leveled compaction and do not set this option explicitly. These users may see additional background compactions following DB open. These compactions help to shape the LSM according to `level_compaction_dynamic_level_bytes` such that the size of each level Ln is approximately size of Ln-1 * `max_bytes_for_level_multiplier`. Turning on this option has other benefits too: see more detail in wiki: https://github.com/facebook/rocksdb/wiki/Leveled-Compaction#option-level_compaction_dynamic_level_bytes-and-levels-target-size and in option comment in advanced_options.h (#11525).
|
||||||
|
* For Leveled Compaction users, `CompactRange()` will now always try to compact to the last non-empty level. (#11468)
|
||||||
|
For Leveled Compaction users, `CompactRange()` with `bottommost_level_compaction = BottommostLevelCompaction::kIfHaveCompactionFilter` will behave similar to `kForceOptimized` in that it will skip files created during this manual compaction when compacting files in the bottommost level. (#11468)
|
||||||
|
* RocksDB will try to drop range tombstones during non-bottommost compaction when it is safe to do so. (#11459)
|
||||||
|
* When a DB is openend with `allow_ingest_behind=true` (currently only Universal compaction is supported), files in the last level, i.e. the ingested files, will not be included in any compaction. (#11489)
|
||||||
|
* Statistics `rocksdb.sst.read.micros` scope is expanded to all SST reads except for file ingestion and column family import (some compaction reads were previously excluded).
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
* Reduced cases of illegally using Env::Default() during static destruction by never destroying the internal PosixEnv itself (except for builds checking for memory leaks). (#11538)
|
||||||
|
* Fix extra prefetching during seek in async_io when BlockBasedTableOptions.num_file_reads_for_auto_readahead is 1 leading to extra reads than required.
|
||||||
|
* Fix a bug where compactions that are qualified to be run as 2 subcompactions were only run as one subcompaction.
|
||||||
|
* Fix a use-after-move bug in block.cc.
|
||||||
|
|
||||||
## 8.3.0 (05/19/2023)
|
## 8.3.0 (05/19/2023)
|
||||||
### New Features
|
### New Features
|
||||||
* Introduced a new option `block_protection_bytes_per_key`, which can be used to enable per key-value integrity protection for in-memory blocks in block cache (#11287).
|
* Introduced a new option `block_protection_bytes_per_key`, which can be used to enable per key-value integrity protection for in-memory blocks in block cache (#11287).
|
||||||
|
|||||||
@@ -3881,6 +3881,14 @@ void rocksdb_options_set_row_cache(rocksdb_options_t* opt,
|
|||||||
}
|
}
|
||||||
|
|
||||||
void rocksdb_options_add_compact_on_deletion_collector_factory(
|
void rocksdb_options_add_compact_on_deletion_collector_factory(
|
||||||
|
rocksdb_options_t* opt, size_t window_size, size_t num_dels_trigger) {
|
||||||
|
std::shared_ptr<ROCKSDB_NAMESPACE::TablePropertiesCollectorFactory>
|
||||||
|
compact_on_del =
|
||||||
|
NewCompactOnDeletionCollectorFactory(window_size, num_dels_trigger);
|
||||||
|
opt->rep.table_properties_collector_factories.emplace_back(compact_on_del);
|
||||||
|
}
|
||||||
|
|
||||||
|
void rocksdb_options_add_compact_on_deletion_collector_factory_del_ratio(
|
||||||
rocksdb_options_t* opt, size_t window_size, size_t num_dels_trigger,
|
rocksdb_options_t* opt, size_t window_size, size_t num_dels_trigger,
|
||||||
double deletion_ratio) {
|
double deletion_ratio) {
|
||||||
std::shared_ptr<ROCKSDB_NAMESPACE::TablePropertiesCollectorFactory>
|
std::shared_ptr<ROCKSDB_NAMESPACE::TablePropertiesCollectorFactory>
|
||||||
|
|||||||
+3
-1
@@ -720,7 +720,9 @@ int main(int argc, char** argv) {
|
|||||||
rocksdb_compactoptions_set_exclusive_manual_compaction(coptions, 1);
|
rocksdb_compactoptions_set_exclusive_manual_compaction(coptions, 1);
|
||||||
|
|
||||||
rocksdb_options_add_compact_on_deletion_collector_factory(options, 10000,
|
rocksdb_options_add_compact_on_deletion_collector_factory(options, 10000,
|
||||||
10001, 0.0);
|
10001);
|
||||||
|
rocksdb_options_add_compact_on_deletion_collector_factory_del_ratio(
|
||||||
|
options, 10000, 10001, 0.0);
|
||||||
|
|
||||||
StartPhase("destroy");
|
StartPhase("destroy");
|
||||||
rocksdb_destroy_db(options, dbname, &err);
|
rocksdb_destroy_db(options, dbname, &err);
|
||||||
|
|||||||
@@ -1615,6 +1615,9 @@ extern ROCKSDB_LIBRARY_API void rocksdb_options_set_row_cache(
|
|||||||
|
|
||||||
extern ROCKSDB_LIBRARY_API void
|
extern ROCKSDB_LIBRARY_API void
|
||||||
rocksdb_options_add_compact_on_deletion_collector_factory(
|
rocksdb_options_add_compact_on_deletion_collector_factory(
|
||||||
|
rocksdb_options_t*, size_t window_size, size_t num_dels_trigger);
|
||||||
|
extern ROCKSDB_LIBRARY_API void
|
||||||
|
rocksdb_options_add_compact_on_deletion_collector_factory_del_ratio(
|
||||||
rocksdb_options_t*, size_t window_size, size_t num_dels_trigger,
|
rocksdb_options_t*, size_t window_size, size_t num_dels_trigger,
|
||||||
double deletion_ratio);
|
double deletion_ratio);
|
||||||
extern ROCKSDB_LIBRARY_API void rocksdb_options_set_manual_wal_flush(
|
extern ROCKSDB_LIBRARY_API void rocksdb_options_set_manual_wal_flush(
|
||||||
|
|||||||
@@ -13,7 +13,7 @@
|
|||||||
// minor or major version number planned for release.
|
// minor or major version number planned for release.
|
||||||
#define ROCKSDB_MAJOR 8
|
#define ROCKSDB_MAJOR 8
|
||||||
#define ROCKSDB_MINOR 4
|
#define ROCKSDB_MINOR 4
|
||||||
#define ROCKSDB_PATCH 0
|
#define ROCKSDB_PATCH 4
|
||||||
|
|
||||||
// Do not use these. We made the mistake of declaring macros starting with
|
// Do not use these. We made the mistake of declaring macros starting with
|
||||||
// double underscore. Now we have to live with our choice. We'll deprecate these
|
// double underscore. Now we have to live with our choice. We'll deprecate these
|
||||||
|
|||||||
@@ -329,6 +329,7 @@ void CompactionMergingIterator::FindNextVisibleKey() {
|
|||||||
assert(current->iter.status().ok());
|
assert(current->iter.status().ok());
|
||||||
minHeap_.replace_top(current);
|
minHeap_.replace_top(current);
|
||||||
} else {
|
} else {
|
||||||
|
considerStatus(current->iter.status());
|
||||||
minHeap_.pop();
|
minHeap_.pop();
|
||||||
}
|
}
|
||||||
if (range_tombstone_iters_[current->level]) {
|
if (range_tombstone_iters_[current->level]) {
|
||||||
|
|||||||
@@ -308,6 +308,7 @@ class MergingIterator : public InternalIterator {
|
|||||||
// holds after this call, and minHeap_.top().iter points to the
|
// holds after this call, and minHeap_.top().iter points to the
|
||||||
// first key >= target among children_ that is not covered by any range
|
// first key >= target among children_ that is not covered by any range
|
||||||
// tombstone.
|
// tombstone.
|
||||||
|
status_ = Status::OK();
|
||||||
SeekImpl(target);
|
SeekImpl(target);
|
||||||
FindNextVisibleKey();
|
FindNextVisibleKey();
|
||||||
|
|
||||||
@@ -321,6 +322,7 @@ class MergingIterator : public InternalIterator {
|
|||||||
void SeekForPrev(const Slice& target) override {
|
void SeekForPrev(const Slice& target) override {
|
||||||
assert(range_tombstone_iters_.empty() ||
|
assert(range_tombstone_iters_.empty() ||
|
||||||
range_tombstone_iters_.size() == children_.size());
|
range_tombstone_iters_.size() == children_.size());
|
||||||
|
status_ = Status::OK();
|
||||||
SeekForPrevImpl(target);
|
SeekForPrevImpl(target);
|
||||||
FindPrevVisibleKey();
|
FindPrevVisibleKey();
|
||||||
|
|
||||||
@@ -798,7 +800,6 @@ void MergingIterator::SeekImpl(const Slice& target, size_t starting_level,
|
|||||||
active_.erase(active_.lower_bound(starting_level), active_.end());
|
active_.erase(active_.lower_bound(starting_level), active_.end());
|
||||||
}
|
}
|
||||||
|
|
||||||
status_ = Status::OK();
|
|
||||||
IterKey current_search_key;
|
IterKey current_search_key;
|
||||||
current_search_key.SetInternalKey(target, false /* copy */);
|
current_search_key.SetInternalKey(target, false /* copy */);
|
||||||
// Seek target might change to some range tombstone end key, so
|
// Seek target might change to some range tombstone end key, so
|
||||||
@@ -931,6 +932,7 @@ bool MergingIterator::SkipNextDeleted() {
|
|||||||
InsertRangeTombstoneToMinHeap(current->level, true /* start_key */,
|
InsertRangeTombstoneToMinHeap(current->level, true /* start_key */,
|
||||||
true /* replace_top */);
|
true /* replace_top */);
|
||||||
} else {
|
} else {
|
||||||
|
// TruncatedRangeDelIterator does not have status
|
||||||
minHeap_.pop();
|
minHeap_.pop();
|
||||||
}
|
}
|
||||||
return true /* current key deleted */;
|
return true /* current key deleted */;
|
||||||
@@ -988,6 +990,9 @@ bool MergingIterator::SkipNextDeleted() {
|
|||||||
if (current->iter.Valid()) {
|
if (current->iter.Valid()) {
|
||||||
assert(current->iter.status().ok());
|
assert(current->iter.status().ok());
|
||||||
minHeap_.push(current);
|
minHeap_.push(current);
|
||||||
|
} else {
|
||||||
|
// TODO(cbi): check status and early return if non-ok.
|
||||||
|
considerStatus(current->iter.status());
|
||||||
}
|
}
|
||||||
// Invariants (rti) and (phi)
|
// Invariants (rti) and (phi)
|
||||||
if (range_tombstone_iters_[current->level] &&
|
if (range_tombstone_iters_[current->level] &&
|
||||||
@@ -1027,6 +1032,7 @@ bool MergingIterator::SkipNextDeleted() {
|
|||||||
if (current->iter.Valid()) {
|
if (current->iter.Valid()) {
|
||||||
minHeap_.replace_top(current);
|
minHeap_.replace_top(current);
|
||||||
} else {
|
} else {
|
||||||
|
considerStatus(current->iter.status());
|
||||||
minHeap_.pop();
|
minHeap_.pop();
|
||||||
}
|
}
|
||||||
return true /* current key deleted */;
|
return true /* current key deleted */;
|
||||||
@@ -1078,7 +1084,6 @@ void MergingIterator::SeekForPrevImpl(const Slice& target,
|
|||||||
active_.erase(active_.lower_bound(starting_level), active_.end());
|
active_.erase(active_.lower_bound(starting_level), active_.end());
|
||||||
}
|
}
|
||||||
|
|
||||||
status_ = Status::OK();
|
|
||||||
IterKey current_search_key;
|
IterKey current_search_key;
|
||||||
current_search_key.SetInternalKey(target, false /* copy */);
|
current_search_key.SetInternalKey(target, false /* copy */);
|
||||||
// Seek target might change to some range tombstone end key, so
|
// Seek target might change to some range tombstone end key, so
|
||||||
@@ -1199,6 +1204,8 @@ bool MergingIterator::SkipPrevDeleted() {
|
|||||||
if (current->iter.Valid()) {
|
if (current->iter.Valid()) {
|
||||||
assert(current->iter.status().ok());
|
assert(current->iter.status().ok());
|
||||||
maxHeap_->push(current);
|
maxHeap_->push(current);
|
||||||
|
} else {
|
||||||
|
considerStatus(current->iter.status());
|
||||||
}
|
}
|
||||||
|
|
||||||
if (range_tombstone_iters_[current->level] &&
|
if (range_tombstone_iters_[current->level] &&
|
||||||
@@ -1241,6 +1248,7 @@ bool MergingIterator::SkipPrevDeleted() {
|
|||||||
if (current->iter.Valid()) {
|
if (current->iter.Valid()) {
|
||||||
maxHeap_->replace_top(current);
|
maxHeap_->replace_top(current);
|
||||||
} else {
|
} else {
|
||||||
|
considerStatus(current->iter.status());
|
||||||
maxHeap_->pop();
|
maxHeap_->pop();
|
||||||
}
|
}
|
||||||
return true /* current key deleted */;
|
return true /* current key deleted */;
|
||||||
|
|||||||
@@ -1 +0,0 @@
|
|||||||
Change the default value for option `level_compaction_dynamic_level_bytes` to true. This affects users who use leveled compaction and do not set this option explicitly. These users may see additional background compactions following DB open. These compactions help to shape the LSM according to `level_compaction_dynamic_level_bytes` such that the size of each level Ln is approximately size of Ln-1 * `max_bytes_for_level_multiplier`. Turning on this option has other benefits too: see more detail in wiki: https://github.com/facebook/rocksdb/wiki/Leveled-Compaction#option-level_compaction_dynamic_level_bytes-and-levels-target-size and in option comment in advanced_options.h (#11525).
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
For Leveled Compaction users, `CompactRange()` will now always try to compact to the last non-empty level. (#11468)
|
|
||||||
For Leveled Compaction users, `CompactRange()` with `bottommost_level_compaction = BottommostLevelCompaction::kIfHaveCompactionFilter` will behave similar to `kForceOptimized` in that it will skip files created during this manual compaction when compacting files in the bottommost level. (#11468)
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
RocksDB will try to drop range tombstones during non-bottommost compaction when it is safe to do so. (#11459)
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
When a DB is openend with `allow_ingest_behind=true` (currently only Universal compaction is supported), files in the last level, i.e. the ingested files, will not be included in any compaction. (#11489)
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
* Statistics `rocksdb.sst.read.micros` scope is expanded to all SST reads except for file ingestion and column family import (some compaction reads were previously excluded).
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
Reduced cases of illegally using Env::Default() during static destruction by never destroying the internal PosixEnv itself (except for builds checking for memory leaks). (#11538)
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
Fix extra prefetching during seek in async_io when BlockBasedTableOptions.num_file_reads_for_auto_readahead_ = 1 leading to extra reads than required.
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
Fix a bug where compactions that are qualified to be run as 2 subcompactions were only run as one subcompaction.
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
*Fix a use-after-move bug in block.cc.
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
Add FSReadRequest::fs_scratch which is a data buffer allocated and provided by underlying FileSystem to RocksDB during reads, when FS wants to provide its own buffer with data instead of using RocksDB provided FSReadRequest::scratch. This can help in cpu optimization by avoiding copy from file system's buffer to RocksDB buffer. More details on how to use/enable it in file_system.h. Right now its supported only for MultiReads(async + sync) with non direct io.
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
Start logging non-zero user-defined timestamp sizes in WAL to signal user key format in subsequent records and use it during recovery. This change will break recovery from WAL files written by early versions that contain user-defined timestamps. The workaround is to ensure there are no WAL files to recover (i.e. by flushing before close) before upgrade.
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
Added new property "rocksdb.obsolete-sst-files-size-property" that reports the size of SST files that have become obsolete but have not yet been deleted or scheduled for deletion
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
*Start to record the value of the flag `AdvancedColumnFamilyOptions.persist_user_defined_timestamps` in the Manifest and table properties for a SST file when it is created. And use the recorded flag when creating a table reader for the SST file. This flag is only explicitly record if it's false.
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
* Add a new option OptimisticTransactionDBOptions::shared_lock_buckets that enables sharing mutexes for validating transactions between DB instances, for better balancing memory efficiency and validation contention across DB instances. Different column families and DBs also now use different hash seeds in this validation, so that the same set of key names will not contend across DBs or column families.
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
*Add a new ticker `rocksdb.files.marked.trash.deleted` to track the number of trash files deleted by background thread from the trash queue.
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
Add an API NewTieredVolatileCache() in include/rocksdb/cache.h to allocate an instance of a block cache with a primary block cache tier and a compressed secondary cache tier. A cache of this type distributes memory reservations against the block cache, such as WriteBufferManager, table reader memory etc., proportionally across both the primary and compressed secondary cache.
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
Add `WaitForCompact()` to wait for all flush and compactions jobs to finish. Jobs to wait include the unscheduled (queued, but not scheduled yet).
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
Add `WriteBatch::Release()` that releases the batch's serialized data to the caller.
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
Add parameter `deletion_ratio` to C API `rocksdb_options_add_compact_on_deletion_collector_factory`.
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
change the FileSystem::use_async_io() API to SupportedOps API in order to extend it to various operations supported by underlying FileSystem. Right now it contains FSSupportedOps::kAsyncIO and FSSupportedOps::kFSBuffer. More details about FSSupportedOps in filesystem.h
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
Add new tickers: `rocksdb.error.handler.bg.error.count`, `rocksdb.error.handler.bg.io.error.count`, `rocksdb.error.handler.bg.retryable.io.error.count` to replace the misspelled ones: `rocksdb.error.handler.bg.errro.count`, `rocksdb.error.handler.bg.io.errro.count`, `rocksdb.error.handler.bg.retryable.io.errro.count` ('error' instead of 'errro'). Users should switch to use the new tickers before 9.0 release as the misspelled old tickers will be completely removed then.
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
Overload the API CreateColumnFamilyWithImport() to support creating ColumnFamily by importing multiple ColumnFamilies It requires that CFs should not overlap in user key range.
|
|
||||||
@@ -26,6 +26,11 @@ bool AsyncFileReader::MultiReadAsyncImpl(ReadAwaiter* awaiter) {
|
|||||||
FSReadRequest* read_req = static_cast<FSReadRequest*>(cb_arg);
|
FSReadRequest* read_req = static_cast<FSReadRequest*>(cb_arg);
|
||||||
read_req->status = req.status;
|
read_req->status = req.status;
|
||||||
read_req->result = req.result;
|
read_req->result = req.result;
|
||||||
|
if (req.fs_scratch != nullptr) {
|
||||||
|
// TODO akanksha: Revisit to remove the const in the callback.
|
||||||
|
FSReadRequest& req_tmp = const_cast<FSReadRequest&>(req);
|
||||||
|
read_req->fs_scratch = std::move(req_tmp.fs_scratch);
|
||||||
|
}
|
||||||
},
|
},
|
||||||
&awaiter->read_reqs_[i], &awaiter->io_handle_[i], &awaiter->del_fn_[i],
|
&awaiter->read_reqs_[i], &awaiter->io_handle_[i], &awaiter->del_fn_[i],
|
||||||
/*aligned_buf=*/nullptr);
|
/*aligned_buf=*/nullptr);
|
||||||
|
|||||||
+10
-10
@@ -179,16 +179,16 @@ void GenericRateLimiter::Request(int64_t bytes, const Env::IOPriority pri,
|
|||||||
// Whichever thread reaches here first performs duty (2) as described
|
// Whichever thread reaches here first performs duty (2) as described
|
||||||
// above.
|
// above.
|
||||||
RefillBytesAndGrantRequestsLocked();
|
RefillBytesAndGrantRequestsLocked();
|
||||||
if (r.request_bytes == 0) {
|
}
|
||||||
// If there is any remaining requests, make sure there exists at least
|
if (r.request_bytes == 0) {
|
||||||
// one candidate is awake for future duties by signaling a front request
|
// If there is any remaining requests, make sure there exists at least
|
||||||
// of a queue.
|
// one candidate is awake for future duties by signaling a front request
|
||||||
for (int i = Env::IO_TOTAL - 1; i >= Env::IO_LOW; --i) {
|
// of a queue.
|
||||||
std::deque<Req*> queue = queue_[i];
|
for (int i = Env::IO_TOTAL - 1; i >= Env::IO_LOW; --i) {
|
||||||
if (!queue.empty()) {
|
auto& queue = queue_[i];
|
||||||
queue.front()->cv.Signal();
|
if (!queue.empty()) {
|
||||||
break;
|
queue.front()->cv.Signal();
|
||||||
}
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,6 +8,7 @@
|
|||||||
|
|
||||||
#if USE_COROUTINES
|
#if USE_COROUTINES
|
||||||
#include <atomic>
|
#include <atomic>
|
||||||
|
#include <queue>
|
||||||
|
|
||||||
#include "folly/CPortability.h"
|
#include "folly/CPortability.h"
|
||||||
#include "folly/CppAttributes.h"
|
#include "folly/CppAttributes.h"
|
||||||
|
|||||||
Reference in New Issue
Block a user