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-04-15 22:39:26 +02:00
|
|
|
|
|
|
|
#ifndef ROCKSDB_LITE
|
2014-10-30 01:43:37 +01:00
|
|
|
#ifndef __STDC_FORMAT_MACROS
|
|
|
|
#define __STDC_FORMAT_MACROS
|
|
|
|
#endif
|
|
|
|
|
2013-08-06 21:54:37 +02:00
|
|
|
#include "db/transaction_log_impl.h"
|
2016-05-20 16:42:18 +02:00
|
|
|
#include <inttypes.h>
|
2012-11-30 02:28:37 +01:00
|
|
|
#include "db/write_batch_internal.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
|
|
|
#include "util/file_reader_writer.h"
|
2013-03-21 23:12:35 +01:00
|
|
|
|
2013-10-04 06:49:15 +02:00
|
|
|
namespace rocksdb {
|
2012-11-30 02:28:37 +01:00
|
|
|
|
|
|
|
TransactionLogIteratorImpl::TransactionLogIteratorImpl(
|
2016-09-24 01:34:04 +02:00
|
|
|
const std::string& dir, const ImmutableDBOptions* options,
|
2014-02-28 20:50:36 +01:00
|
|
|
const TransactionLogIterator::ReadOptions& read_options,
|
2014-02-05 22:12:23 +01:00
|
|
|
const EnvOptions& soptions, const SequenceNumber seq,
|
2017-11-11 02:18:01 +01:00
|
|
|
std::unique_ptr<VectorLogPtr> files, VersionSet const* const versions,
|
|
|
|
const bool seq_per_batch)
|
2014-02-05 22:12:23 +01:00
|
|
|
: dir_(dir),
|
|
|
|
options_(options),
|
2014-02-28 20:50:36 +01:00
|
|
|
read_options_(read_options),
|
2014-02-05 22:12:23 +01:00
|
|
|
soptions_(soptions),
|
|
|
|
startingSequenceNumber_(seq),
|
|
|
|
files_(std::move(files)),
|
|
|
|
started_(false),
|
|
|
|
isValid_(false),
|
|
|
|
currentFileIndex_(0),
|
|
|
|
currentBatchSeq_(0),
|
|
|
|
currentLastSeq_(0),
|
2017-11-11 02:18:01 +01:00
|
|
|
versions_(versions),
|
|
|
|
seq_per_batch_(seq_per_batch) {
|
2013-10-14 00:28:24 +02:00
|
|
|
assert(files_ != nullptr);
|
2014-10-30 01:43:37 +01:00
|
|
|
assert(versions_ != nullptr);
|
2012-11-30 02:28:37 +01:00
|
|
|
|
2013-04-29 22:19:24 +02:00
|
|
|
reporter_.env = options_->env;
|
|
|
|
reporter_.info_log = options_->info_log.get();
|
2013-10-14 00:28:24 +02:00
|
|
|
SeekToStartSequence(); // Seek till starting sequence
|
2012-11-30 02:28:37 +01:00
|
|
|
}
|
|
|
|
|
2013-01-20 11:07:13 +01:00
|
|
|
Status TransactionLogIteratorImpl::OpenLogFile(
|
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
|
|
|
const LogFile* logFile, unique_ptr<SequentialFileReader>* file_reader) {
|
2012-11-30 02:28:37 +01:00
|
|
|
Env* env = options_->env;
|
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
|
|
|
unique_ptr<SequentialFile> file;
|
2018-06-21 17:34:24 +02:00
|
|
|
std::string fname;
|
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
|
|
|
Status s;
|
2017-05-23 03:40:41 +02:00
|
|
|
EnvOptions optimized_env_options = env->OptimizeForLogRead(soptions_);
|
2013-08-06 21:54:37 +02:00
|
|
|
if (logFile->Type() == kArchivedLogFile) {
|
2018-06-21 17:34:24 +02:00
|
|
|
fname = ArchivedLogFileName(dir_, logFile->LogNumber());
|
2017-05-23 03:40:41 +02:00
|
|
|
s = env->NewSequentialFile(fname, &file, optimized_env_options);
|
2012-11-30 02:28:37 +01:00
|
|
|
} else {
|
2018-06-21 17:34:24 +02:00
|
|
|
fname = LogFileName(dir_, logFile->LogNumber());
|
2017-05-23 03:40:41 +02:00
|
|
|
s = env->NewSequentialFile(fname, &file, optimized_env_options);
|
2014-11-06 20:14:28 +01:00
|
|
|
if (!s.ok()) {
|
2012-11-30 02:28:37 +01:00
|
|
|
// If cannot open file in DB directory.
|
|
|
|
// Try the archive dir, as it could have moved in the meanwhile.
|
2013-10-01 23:46:52 +02:00
|
|
|
fname = ArchivedLogFileName(dir_, logFile->LogNumber());
|
2017-05-23 03:40:41 +02:00
|
|
|
s = env->NewSequentialFile(fname, &file, optimized_env_options);
|
2012-11-30 02:28:37 +01:00
|
|
|
}
|
|
|
|
}
|
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
|
|
|
if (s.ok()) {
|
2018-06-21 17:34:24 +02:00
|
|
|
file_reader->reset(new SequentialFileReader(std::move(file), fname));
|
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
|
|
|
}
|
|
|
|
return s;
|
2012-11-30 02:28:37 +01:00
|
|
|
}
|
|
|
|
|
2013-03-04 19:44:04 +01:00
|
|
|
BatchResult TransactionLogIteratorImpl::GetBatch() {
|
2012-11-30 02:28:37 +01:00
|
|
|
assert(isValid_); // cannot call in a non valid state.
|
2013-03-04 19:44:04 +01:00
|
|
|
BatchResult result;
|
2013-10-14 00:28:24 +02:00
|
|
|
result.sequence = currentBatchSeq_;
|
2013-03-04 19:44:04 +01:00
|
|
|
result.writeBatchPtr = std::move(currentBatch_);
|
|
|
|
return result;
|
2012-11-30 02:28:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Status TransactionLogIteratorImpl::status() {
|
|
|
|
return currentStatus_;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool TransactionLogIteratorImpl::Valid() {
|
|
|
|
return started_ && isValid_;
|
|
|
|
}
|
|
|
|
|
2013-10-21 04:06:19 +02:00
|
|
|
bool TransactionLogIteratorImpl::RestrictedRead(
|
|
|
|
Slice* record,
|
|
|
|
std::string* scratch) {
|
|
|
|
// Don't read if no more complete entries to read from logs
|
2014-10-30 01:43:37 +01:00
|
|
|
if (currentLastSeq_ >= versions_->LastSequence()) {
|
2013-10-21 04:06:19 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return currentLogReader_->ReadRecord(record, scratch);
|
|
|
|
}
|
|
|
|
|
|
|
|
void TransactionLogIteratorImpl::SeekToStartSequence(
|
|
|
|
uint64_t startFileIndex,
|
|
|
|
bool strict) {
|
|
|
|
std::string scratch;
|
|
|
|
Slice record;
|
|
|
|
started_ = false;
|
|
|
|
isValid_ = false;
|
|
|
|
if (files_->size() <= startFileIndex) {
|
|
|
|
return;
|
|
|
|
}
|
2018-09-06 03:07:53 +02:00
|
|
|
Status s = OpenLogReader(files_->at(static_cast<size_t>(startFileIndex)).get());
|
2013-10-21 04:06:19 +02:00
|
|
|
if (!s.ok()) {
|
|
|
|
currentStatus_ = s;
|
2014-05-13 02:50:21 +02:00
|
|
|
reporter_.Info(currentStatus_.ToString().c_str());
|
2013-10-21 04:06:19 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
while (RestrictedRead(&record, &scratch)) {
|
2016-03-30 19:35:22 +02:00
|
|
|
if (record.size() < WriteBatchInternal::kHeader) {
|
2013-10-21 04:06:19 +02:00
|
|
|
reporter_.Corruption(
|
|
|
|
record.size(), Status::Corruption("very small log record"));
|
|
|
|
continue;
|
2012-11-30 02:28:37 +01:00
|
|
|
}
|
2013-10-21 04:06:19 +02:00
|
|
|
UpdateCurrentWriteBatch(record);
|
2013-10-25 04:09:02 +02:00
|
|
|
if (currentLastSeq_ >= startingSequenceNumber_) {
|
2013-10-21 04:06:19 +02:00
|
|
|
if (strict && currentBatchSeq_ != startingSequenceNumber_) {
|
|
|
|
currentStatus_ = Status::Corruption("Gap in sequence number. Could not "
|
|
|
|
"seek to required sequence number");
|
|
|
|
reporter_.Info(currentStatus_.ToString().c_str());
|
2013-10-14 00:28:24 +02:00
|
|
|
return;
|
2013-10-21 04:06:19 +02:00
|
|
|
} else if (strict) {
|
|
|
|
reporter_.Info("Could seek required sequence number. Iterator will "
|
|
|
|
"continue.");
|
2012-11-30 02:28:37 +01:00
|
|
|
}
|
2013-10-21 04:06:19 +02:00
|
|
|
isValid_ = true;
|
|
|
|
started_ = true; // set started_ as we could seek till starting sequence
|
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
isValid_ = false;
|
2012-11-30 02:28:37 +01:00
|
|
|
}
|
2013-10-21 04:06:19 +02:00
|
|
|
}
|
2013-10-25 04:09:02 +02:00
|
|
|
|
2013-10-21 04:06:19 +02:00
|
|
|
// Could not find start sequence in first file. Normally this must be the
|
|
|
|
// only file. Otherwise log the error and let the iterator return next entry
|
2013-10-25 04:09:02 +02:00
|
|
|
// If strict is set, we want to seek exactly till the start sequence and it
|
|
|
|
// should have been present in the file we scanned above
|
|
|
|
if (strict) {
|
|
|
|
currentStatus_ = Status::Corruption("Gap in sequence number. Could not "
|
|
|
|
"seek to required sequence number");
|
|
|
|
reporter_.Info(currentStatus_.ToString().c_str());
|
|
|
|
} else if (files_->size() != 1) {
|
2013-10-21 04:06:19 +02:00
|
|
|
currentStatus_ = Status::Corruption("Start sequence was not found, "
|
|
|
|
"skipping to the next available");
|
2013-10-25 04:09:02 +02:00
|
|
|
reporter_.Info(currentStatus_.ToString().c_str());
|
|
|
|
// Let NextImpl find the next available entry. started_ remains false
|
|
|
|
// because we don't want to check for gaps while moving to start sequence
|
|
|
|
NextImpl(true);
|
2013-10-21 04:06:19 +02:00
|
|
|
}
|
2013-10-14 00:28:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void TransactionLogIteratorImpl::Next() {
|
2013-10-25 04:09:02 +02:00
|
|
|
return NextImpl(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
void TransactionLogIteratorImpl::NextImpl(bool internal) {
|
2013-10-14 00:28:24 +02:00
|
|
|
std::string scratch;
|
|
|
|
Slice record;
|
|
|
|
isValid_ = false;
|
2013-10-25 04:09:02 +02:00
|
|
|
if (!internal && !started_) {
|
|
|
|
// Runs every time until we can seek to the start sequence
|
2013-10-14 00:28:24 +02:00
|
|
|
return SeekToStartSequence();
|
2013-04-09 01:28:09 +02:00
|
|
|
}
|
2013-10-14 00:28:24 +02:00
|
|
|
while(true) {
|
2013-01-20 11:07:13 +01:00
|
|
|
assert(currentLogReader_);
|
2013-10-25 04:09:02 +02:00
|
|
|
if (currentLogReader_->IsEOF()) {
|
|
|
|
currentLogReader_->UnmarkEOF();
|
|
|
|
}
|
|
|
|
while (RestrictedRead(&record, &scratch)) {
|
2016-03-30 19:35:22 +02:00
|
|
|
if (record.size() < WriteBatchInternal::kHeader) {
|
2013-10-25 04:09:02 +02:00
|
|
|
reporter_.Corruption(
|
|
|
|
record.size(), Status::Corruption("very small log record"));
|
|
|
|
continue;
|
|
|
|
} else {
|
|
|
|
// started_ should be true if called by application
|
|
|
|
assert(internal || started_);
|
|
|
|
// started_ should be false if called internally
|
|
|
|
assert(!internal || !started_);
|
|
|
|
UpdateCurrentWriteBatch(record);
|
|
|
|
if (internal && !started_) {
|
|
|
|
started_ = true;
|
2013-03-21 23:12:35 +01:00
|
|
|
}
|
2013-10-25 04:09:02 +02:00
|
|
|
return;
|
2012-11-30 02:28:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-14 00:28:24 +02:00
|
|
|
// Open the next file
|
|
|
|
if (currentFileIndex_ < files_->size() - 1) {
|
|
|
|
++currentFileIndex_;
|
2014-11-06 20:14:28 +01:00
|
|
|
Status s = OpenLogReader(files_->at(currentFileIndex_).get());
|
|
|
|
if (!s.ok()) {
|
2012-11-30 02:28:37 +01:00
|
|
|
isValid_ = false;
|
2014-11-06 20:14:28 +01:00
|
|
|
currentStatus_ = s;
|
2013-10-14 00:28:24 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
isValid_ = false;
|
2014-10-30 01:43:37 +01:00
|
|
|
if (currentLastSeq_ == versions_->LastSequence()) {
|
2013-10-14 00:28:24 +02:00
|
|
|
currentStatus_ = Status::OK();
|
|
|
|
} else {
|
2014-02-12 20:42:54 +01:00
|
|
|
currentStatus_ = Status::Corruption("NO MORE DATA LEFT");
|
2012-11-30 02:28:37 +01:00
|
|
|
}
|
2013-10-14 00:28:24 +02:00
|
|
|
return;
|
2012-11-30 02:28:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-25 04:09:02 +02:00
|
|
|
bool TransactionLogIteratorImpl::IsBatchExpected(
|
2013-10-21 04:06:19 +02:00
|
|
|
const WriteBatch* batch,
|
|
|
|
const SequenceNumber expectedSeq) {
|
|
|
|
assert(batch);
|
|
|
|
SequenceNumber batchSeq = WriteBatchInternal::Sequence(batch);
|
2013-10-25 04:09:02 +02:00
|
|
|
if (batchSeq != expectedSeq) {
|
2013-10-21 04:06:19 +02:00
|
|
|
char buf[200];
|
|
|
|
snprintf(buf, sizeof(buf),
|
2014-10-30 01:43:37 +01:00
|
|
|
"Discontinuity in log records. Got seq=%" PRIu64
|
|
|
|
", Expected seq=%" PRIu64 ", Last flushed seq=%" PRIu64
|
|
|
|
".Log iterator will reseek the correct batch.",
|
|
|
|
batchSeq, expectedSeq, versions_->LastSequence());
|
2013-10-21 04:06:19 +02:00
|
|
|
reporter_.Info(buf);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-03-04 19:44:04 +01:00
|
|
|
void TransactionLogIteratorImpl::UpdateCurrentWriteBatch(const Slice& record) {
|
2013-11-08 00:46:48 +01:00
|
|
|
std::unique_ptr<WriteBatch> batch(new WriteBatch());
|
|
|
|
WriteBatchInternal::SetContents(batch.get(), record);
|
2013-10-21 04:06:19 +02:00
|
|
|
|
2013-10-25 04:09:02 +02:00
|
|
|
SequenceNumber expectedSeq = currentLastSeq_ + 1;
|
|
|
|
// If the iterator has started, then confirm that we get continuous batches
|
2013-11-08 00:46:48 +01:00
|
|
|
if (started_ && !IsBatchExpected(batch.get(), expectedSeq)) {
|
2013-10-21 04:06:19 +02:00
|
|
|
// Seek to the batch having expected sequence number
|
|
|
|
if (expectedSeq < files_->at(currentFileIndex_)->StartSequence()) {
|
|
|
|
// Expected batch must lie in the previous log file
|
2013-11-13 05:05:28 +01:00
|
|
|
// Avoid underflow.
|
|
|
|
if (currentFileIndex_ != 0) {
|
|
|
|
currentFileIndex_--;
|
|
|
|
}
|
2013-10-21 04:06:19 +02:00
|
|
|
}
|
|
|
|
startingSequenceNumber_ = expectedSeq;
|
2013-10-25 04:09:02 +02:00
|
|
|
// currentStatus_ will be set to Ok if reseek succeeds
|
2017-11-11 02:18:01 +01:00
|
|
|
// Note: this is still ok in seq_pre_batch_ && two_write_queuesp_ mode
|
2017-10-23 23:20:22 +02:00
|
|
|
// that allows gaps in the WAL since it will still skip over the gap.
|
2013-10-25 04:09:02 +02:00
|
|
|
currentStatus_ = Status::NotFound("Gap in sequence numbers");
|
2017-11-11 02:18:01 +01:00
|
|
|
// In seq_per_batch_ mode, gaps in the seq are possible so the strict mode
|
2017-10-23 23:20:22 +02:00
|
|
|
// should be disabled
|
2017-11-11 02:18:01 +01:00
|
|
|
return SeekToStartSequence(currentFileIndex_, !seq_per_batch_);
|
2013-10-21 04:06:19 +02:00
|
|
|
}
|
|
|
|
|
2017-10-23 23:20:22 +02:00
|
|
|
struct BatchCounter : public WriteBatch::Handler {
|
|
|
|
SequenceNumber sequence_;
|
|
|
|
BatchCounter(SequenceNumber sequence) : sequence_(sequence) {}
|
|
|
|
Status MarkNoop(bool empty_batch) override {
|
|
|
|
if (!empty_batch) {
|
|
|
|
sequence_++;
|
|
|
|
}
|
|
|
|
return Status::OK();
|
|
|
|
}
|
|
|
|
Status MarkEndPrepare(const Slice&) override {
|
|
|
|
sequence_++;
|
|
|
|
return Status::OK();
|
|
|
|
}
|
|
|
|
Status MarkCommit(const Slice&) override {
|
|
|
|
sequence_++;
|
|
|
|
return Status::OK();
|
|
|
|
}
|
|
|
|
|
2018-03-05 22:08:17 +01:00
|
|
|
Status PutCF(uint32_t /*cf*/, const Slice& /*key*/,
|
|
|
|
const Slice& /*val*/) override {
|
2017-10-23 23:20:22 +02:00
|
|
|
return Status::OK();
|
|
|
|
}
|
2018-03-05 22:08:17 +01:00
|
|
|
Status DeleteCF(uint32_t /*cf*/, const Slice& /*key*/) override {
|
2017-10-23 23:20:22 +02:00
|
|
|
return Status::OK();
|
|
|
|
}
|
2018-03-05 22:08:17 +01:00
|
|
|
Status SingleDeleteCF(uint32_t /*cf*/, const Slice& /*key*/) override {
|
2017-10-23 23:20:22 +02:00
|
|
|
return Status::OK();
|
|
|
|
}
|
2018-03-05 22:08:17 +01:00
|
|
|
Status MergeCF(uint32_t /*cf*/, const Slice& /*key*/,
|
|
|
|
const Slice& /*val*/) override {
|
2017-10-23 23:20:22 +02:00
|
|
|
return Status::OK();
|
|
|
|
}
|
2018-07-07 02:17:36 +02:00
|
|
|
Status MarkBeginPrepare(bool) override { return Status::OK(); }
|
2017-10-23 23:20:22 +02:00
|
|
|
Status MarkRollback(const Slice&) override { return Status::OK(); }
|
|
|
|
};
|
|
|
|
|
2013-11-08 00:46:48 +01:00
|
|
|
currentBatchSeq_ = WriteBatchInternal::Sequence(batch.get());
|
2017-11-11 02:18:01 +01:00
|
|
|
if (seq_per_batch_) {
|
2017-10-23 23:20:22 +02:00
|
|
|
BatchCounter counter(currentBatchSeq_);
|
|
|
|
batch->Iterate(&counter);
|
|
|
|
currentLastSeq_ = counter.sequence_;
|
|
|
|
} else {
|
|
|
|
currentLastSeq_ =
|
|
|
|
currentBatchSeq_ + WriteBatchInternal::Count(batch.get()) - 1;
|
|
|
|
}
|
2013-10-21 04:06:19 +02:00
|
|
|
// currentBatchSeq_ can only change here
|
2014-10-30 01:43:37 +01:00
|
|
|
assert(currentLastSeq_ <= versions_->LastSequence());
|
2013-10-21 04:06:19 +02:00
|
|
|
|
2016-05-20 16:42:18 +02:00
|
|
|
currentBatch_ = std::move(batch);
|
2013-03-21 23:12:35 +01:00
|
|
|
isValid_ = true;
|
2013-03-21 23:49:20 +01:00
|
|
|
currentStatus_ = Status::OK();
|
2013-03-04 19:44:04 +01:00
|
|
|
}
|
|
|
|
|
2013-08-06 21:54:37 +02:00
|
|
|
Status TransactionLogIteratorImpl::OpenLogReader(const LogFile* logFile) {
|
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
|
|
|
unique_ptr<SequentialFileReader> file;
|
2014-11-06 20:14:28 +01:00
|
|
|
Status s = OpenLogFile(logFile, &file);
|
|
|
|
if (!s.ok()) {
|
|
|
|
return s;
|
2013-04-09 01:28:09 +02:00
|
|
|
}
|
|
|
|
assert(file);
|
2018-09-14 02:08:04 +02:00
|
|
|
currentLogReader_.reset(
|
|
|
|
new log::Reader(options_->info_log, std::move(file), &reporter_,
|
2018-10-19 20:51:13 +02:00
|
|
|
read_options_.verify_checksums_, logFile->LogNumber(),
|
|
|
|
false /* retry_after_eof */));
|
2013-04-09 01:28:09 +02:00
|
|
|
return Status::OK();
|
|
|
|
}
|
2013-10-04 06:49:15 +02:00
|
|
|
} // namespace rocksdb
|
2014-04-15 22:39:26 +02:00
|
|
|
#endif // ROCKSDB_LITE
|