Refactoring of writing key/value pairs
Summary: Before, writing key/value pairs out to files was done inside ProcessKeyValueCompaction(). To make ProcessKeyValueCompaction() more understandable, this patch moves the writing part to a separate function. This is intended to be a stepping stone for additional changes. Test Plan: make && make check Reviewers: sdong, rven, yhchiang, igor Reviewed By: igor Subscribers: dhruba, leveldb Differential Revision: https://reviews.facebook.net/D42243
This commit is contained in:
parent
e1c99e10c1
commit
6b2d44b2ff
@ -327,7 +327,7 @@ Status CompactionJob::Run() {
|
||||
} else {
|
||||
status = ProcessPrefixBatches(cfd, &imm_micros, input.get(),
|
||||
compaction_filter_v2);
|
||||
} // checking for compaction filter v2
|
||||
}
|
||||
|
||||
if (status.ok() &&
|
||||
(shutting_down_->load(std::memory_order_acquire) || cfd->IsDropped())) {
|
||||
@ -335,7 +335,7 @@ Status CompactionJob::Run() {
|
||||
"Database shutdown or Column family drop during compaction");
|
||||
}
|
||||
if (status.ok() && compact_->builder != nullptr) {
|
||||
status = FinishCompactionOutputFile(input.get());
|
||||
status = FinishCompactionOutputFile(input->status());
|
||||
}
|
||||
if (status.ok()) {
|
||||
status = input->status();
|
||||
@ -629,7 +629,7 @@ Status CompactionJob::ProcessKeyValueCompaction(int64_t* imm_micros,
|
||||
|
||||
if (compact_->compaction->ShouldStopBefore(key) &&
|
||||
compact_->builder != nullptr) {
|
||||
status = FinishCompactionOutputFile(input);
|
||||
status = FinishCompactionOutputFile(input->status());
|
||||
if (!status.ok()) {
|
||||
break;
|
||||
}
|
||||
@ -772,25 +772,59 @@ Status CompactionJob::ProcessKeyValueCompaction(int64_t* imm_micros,
|
||||
// We may write a single key (e.g.: for Put/Delete or successful merge).
|
||||
// Or we may instead have to write a sequence/list of keys.
|
||||
// We have to write a sequence iff we have an unsuccessful merge
|
||||
bool has_merge_list = current_entry_is_merging && !merge.IsSuccess();
|
||||
const std::deque<std::string>* keys = nullptr;
|
||||
const std::deque<std::string>* values = nullptr;
|
||||
std::deque<std::string>::const_reverse_iterator key_iter;
|
||||
std::deque<std::string>::const_reverse_iterator value_iter;
|
||||
if (has_merge_list) {
|
||||
keys = &merge.keys();
|
||||
values = &merge.values();
|
||||
key_iter = keys->rbegin(); // The back (*rbegin()) is the first key
|
||||
value_iter = values->rbegin();
|
||||
if (current_entry_is_merging && !merge.IsSuccess()) {
|
||||
const auto& keys = merge.keys();
|
||||
const auto& values = merge.values();
|
||||
std::deque<std::string>::const_reverse_iterator key_iter =
|
||||
keys.rbegin(); // The back (*rbegin()) is the first key
|
||||
std::deque<std::string>::const_reverse_iterator value_iter =
|
||||
values.rbegin();
|
||||
|
||||
key = Slice(*key_iter);
|
||||
value = Slice(*value_iter);
|
||||
|
||||
// We have a list of keys to write, traverse the list.
|
||||
while (true) {
|
||||
status = WriteKeyValue(key, value, ikey, input->status());
|
||||
if (!status.ok()) {
|
||||
break;
|
||||
}
|
||||
|
||||
// If we have a list of keys to write, traverse the list.
|
||||
// If we have a single key to write, simply write that key.
|
||||
while (true) {
|
||||
// Invariant: key,value,ikey will always be the next entry to write
|
||||
++key_iter;
|
||||
++value_iter;
|
||||
|
||||
// If at end of list
|
||||
if (key_iter == keys.rend() || value_iter == values.rend()) {
|
||||
// Sanity Check: if one ends, then both end
|
||||
assert(key_iter == keys.rend() && value_iter == values.rend());
|
||||
break;
|
||||
}
|
||||
|
||||
// Otherwise not at end of list. Update key, value, and ikey.
|
||||
key = Slice(*key_iter);
|
||||
value = Slice(*value_iter);
|
||||
ParseInternalKey(key, &ikey);
|
||||
}
|
||||
} else {
|
||||
// There is only one item to be written out
|
||||
status = WriteKeyValue(key, value, ikey, input->status());
|
||||
}
|
||||
} // if (!drop)
|
||||
|
||||
// MergeUntil has moved input to the next entry
|
||||
if (!current_entry_is_merging) {
|
||||
input->Next();
|
||||
}
|
||||
}
|
||||
RecordTick(stats_, FILTER_OPERATION_TOTAL_TIME, total_filter_time);
|
||||
RecordDroppedKeys(&key_drop_user, &key_drop_newer_entry, &key_drop_obsolete);
|
||||
RecordCompactionIOStats();
|
||||
|
||||
return status;
|
||||
}
|
||||
|
||||
Status CompactionJob::WriteKeyValue(const Slice& key, const Slice& value,
|
||||
const ParsedInternalKey& ikey, const Status& input_status) {
|
||||
Slice newkey(key.data(), key.size());
|
||||
std::string kstr;
|
||||
|
||||
@ -808,13 +842,11 @@ Status CompactionJob::ProcessKeyValueCompaction(int64_t* imm_micros,
|
||||
newkey = Slice(kstr);
|
||||
}
|
||||
|
||||
assert((key.clear(), 1)); // we do not need 'key' anymore
|
||||
|
||||
// Open output file if necessary
|
||||
if (compact_->builder == nullptr) {
|
||||
status = OpenCompactionOutputFile();
|
||||
Status status = OpenCompactionOutputFile();
|
||||
if (!status.ok()) {
|
||||
break;
|
||||
return status;
|
||||
}
|
||||
}
|
||||
|
||||
@ -833,47 +865,11 @@ Status CompactionJob::ProcessKeyValueCompaction(int64_t* imm_micros,
|
||||
std::max(compact_->current_output()->largest_seqno, seqno);
|
||||
|
||||
// Close output file if it is big enough
|
||||
Status status;
|
||||
if (compact_->builder->FileSize() >=
|
||||
compact_->compaction->max_output_file_size()) {
|
||||
status = FinishCompactionOutputFile(input);
|
||||
if (!status.ok()) {
|
||||
break;
|
||||
status = FinishCompactionOutputFile(input_status);
|
||||
}
|
||||
}
|
||||
|
||||
// If we have a list of entries, move to next element
|
||||
// If we only had one entry, then break the loop.
|
||||
if (has_merge_list) {
|
||||
++key_iter;
|
||||
++value_iter;
|
||||
|
||||
// If at end of list
|
||||
if (key_iter == keys->rend() || value_iter == values->rend()) {
|
||||
// Sanity Check: if one ends, then both end
|
||||
assert(key_iter == keys->rend() && value_iter == values->rend());
|
||||
break;
|
||||
}
|
||||
|
||||
// Otherwise not at end of list. Update key, value, and ikey.
|
||||
key = Slice(*key_iter);
|
||||
value = Slice(*value_iter);
|
||||
ParseInternalKey(key, &ikey);
|
||||
|
||||
} else {
|
||||
// Only had one item to begin with (Put/Delete)
|
||||
break;
|
||||
}
|
||||
} // while (true)
|
||||
} // if (!drop)
|
||||
|
||||
// MergeUntil has moved input to the next entry
|
||||
if (!current_entry_is_merging) {
|
||||
input->Next();
|
||||
}
|
||||
}
|
||||
RecordTick(stats_, FILTER_OPERATION_TOTAL_TIME, total_filter_time);
|
||||
RecordDroppedKeys(&key_drop_user, &key_drop_newer_entry, &key_drop_obsolete);
|
||||
RecordCompactionIOStats();
|
||||
|
||||
return status;
|
||||
}
|
||||
@ -967,7 +963,7 @@ void CompactionJob::CallCompactionFilterV2(
|
||||
} // for
|
||||
}
|
||||
|
||||
Status CompactionJob::FinishCompactionOutputFile(Iterator* input) {
|
||||
Status CompactionJob::FinishCompactionOutputFile(const Status& input_status) {
|
||||
AutoThreadOperationStageUpdater stage_updater(
|
||||
ThreadStatus::STAGE_COMPACTION_SYNC_FILE);
|
||||
assert(compact_ != nullptr);
|
||||
@ -980,7 +976,7 @@ Status CompactionJob::FinishCompactionOutputFile(Iterator* input) {
|
||||
|
||||
TableProperties table_properties;
|
||||
// Check for iterator errors
|
||||
Status s = input->status();
|
||||
Status s = input_status;
|
||||
const uint64_t current_entries = compact_->builder->NumEntries();
|
||||
compact_->current_output()->need_compaction =
|
||||
compact_->builder->NeedCompact();
|
||||
|
@ -93,10 +93,14 @@ class CompactionJob {
|
||||
// through input and compact the kv-pairs
|
||||
Status ProcessKeyValueCompaction(int64_t* imm_micros, Iterator* input,
|
||||
bool is_compaction_v2);
|
||||
|
||||
Status WriteKeyValue(const Slice& key, const Slice& value,
|
||||
const ParsedInternalKey& ikey,
|
||||
const Status& input_status);
|
||||
// Call compaction_filter_v2->Filter() on kv-pairs in compact
|
||||
void CallCompactionFilterV2(CompactionFilterV2* compaction_filter_v2,
|
||||
uint64_t* time);
|
||||
Status FinishCompactionOutputFile(Iterator* input);
|
||||
Status FinishCompactionOutputFile(const Status& input_status);
|
||||
Status InstallCompactionResults(InstrumentedMutex* db_mutex,
|
||||
const MutableCFOptions& mutable_cf_options);
|
||||
SequenceNumber findEarliestVisibleSnapshot(
|
||||
|
Loading…
Reference in New Issue
Block a user