245 lines
9.1 KiB
C++
245 lines
9.1 KiB
C++
/*
|
|
* RestoreLoader.h
|
|
*
|
|
* This source file is part of the FoundationDB open source project
|
|
*
|
|
* Copyright 2013-2018 Apple Inc. and the FoundationDB project authors
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
// This file declares the actors used by the RestoreLoader role
|
|
|
|
#pragma once
|
|
#if defined(NO_INTELLISENSE) && !defined(FDBSERVER_RESTORE_LOADER_G_H)
|
|
#define FDBSERVER_RESTORE_LOADER_G_H
|
|
#include "fdbserver/RestoreLoader.actor.g.h"
|
|
#elif !defined(FDBSERVER_RESTORE_LOADER_H)
|
|
#define FDBSERVER_RESTORE_LOADER_H
|
|
|
|
#include <sstream>
|
|
#include "fdbclient/FDBTypes.h"
|
|
#include "fdbclient/CommitTransaction.h"
|
|
#include "fdbrpc/fdbrpc.h"
|
|
#include "fdbrpc/Stats.h"
|
|
#include "fdbserver/CoordinationInterface.h"
|
|
#include "fdbrpc/Locality.h"
|
|
#include "fdbserver/RestoreUtil.h"
|
|
#include "fdbserver/RestoreCommon.actor.h"
|
|
#include "fdbserver/RestoreRoleCommon.actor.h"
|
|
#include "fdbserver/RestoreWorkerInterface.actor.h"
|
|
#include "fdbclient/BackupContainer.h"
|
|
|
|
#include "flow/actorcompiler.h" // has to be last include
|
|
|
|
class LoaderVersionBatchState : RoleVersionBatchState {
|
|
public:
|
|
static const int NOT_INIT = 0;
|
|
static const int INIT = 1;
|
|
static const int LOAD_FILE = 2;
|
|
static const int SEND_MUTATIONS = 3;
|
|
static const int INVALID = 4;
|
|
|
|
explicit LoaderVersionBatchState(int newState) { vbState = newState; }
|
|
|
|
~LoaderVersionBatchState() override = default;
|
|
|
|
void operator=(int newState) override { vbState = newState; }
|
|
|
|
int get() override { return vbState; }
|
|
};
|
|
|
|
struct LoaderBatchData : public ReferenceCounted<LoaderBatchData> {
|
|
std::map<LoadingParam, Future<Void>> processedFileParams;
|
|
std::map<LoadingParam, VersionedMutationsMap> kvOpsPerLP; // Buffered kvOps for each loading param
|
|
|
|
// rangeToApplier is in controller and loader. Loader uses this to determine which applier a mutation should be sent
|
|
// Key is the inclusive lower bound of the key range the applier (UID) is responsible for
|
|
std::map<Key, UID> rangeToApplier;
|
|
|
|
// Sampled mutations to be sent back to restore controller
|
|
std::map<LoadingParam, SampledMutationsVec> sampleMutations;
|
|
int numSampledMutations; // The total number of mutations received from sampled data.
|
|
|
|
Future<Void> pollMetrics;
|
|
|
|
LoaderVersionBatchState vbState;
|
|
|
|
long loadFileReqs;
|
|
|
|
// Status counters
|
|
struct Counters {
|
|
CounterCollection cc;
|
|
Counter loadedRangeBytes, loadedLogBytes, sentBytes;
|
|
Counter sampledRangeBytes, sampledLogBytes;
|
|
Counter oldLogMutations;
|
|
|
|
Counters(LoaderBatchData* self, UID loaderInterfID, int batchIndex)
|
|
: cc("LoaderBatch", loaderInterfID.toString() + ":" + std::to_string(batchIndex)),
|
|
loadedRangeBytes("LoadedRangeBytes", cc), loadedLogBytes("LoadedLogBytes", cc), sentBytes("SentBytes", cc),
|
|
sampledRangeBytes("SampledRangeBytes", cc), sampledLogBytes("SampledLogBytes", cc),
|
|
oldLogMutations("OldLogMutations", cc) {}
|
|
} counters;
|
|
|
|
explicit LoaderBatchData(UID nodeID, int batchIndex)
|
|
: vbState(LoaderVersionBatchState::NOT_INIT), loadFileReqs(0), counters(this, nodeID, batchIndex) {
|
|
pollMetrics = traceCounters(format("FastRestoreLoaderMetrics%d", batchIndex),
|
|
nodeID,
|
|
SERVER_KNOBS->FASTRESTORE_ROLE_LOGGING_DELAY,
|
|
&counters.cc,
|
|
nodeID.toString() + "/RestoreLoaderMetrics/" + std::to_string(batchIndex));
|
|
TraceEvent("FastRestoreLoaderMetricsCreated").detail("Node", nodeID);
|
|
}
|
|
|
|
void reset() {
|
|
processedFileParams.clear();
|
|
kvOpsPerLP.clear();
|
|
sampleMutations.clear();
|
|
numSampledMutations = 0;
|
|
rangeToApplier.clear();
|
|
}
|
|
};
|
|
|
|
using LoaderCounters = LoaderBatchData::Counters;
|
|
|
|
struct LoaderBatchStatus : public ReferenceCounted<LoaderBatchStatus> {
|
|
Optional<Future<Void>> sendAllRanges;
|
|
Optional<Future<Void>> sendAllLogs;
|
|
|
|
void addref() { return ReferenceCounted<LoaderBatchStatus>::addref(); }
|
|
void delref() { return ReferenceCounted<LoaderBatchStatus>::delref(); }
|
|
|
|
std::string toString() const {
|
|
std::stringstream ss;
|
|
ss << "sendAllRanges: "
|
|
<< (!sendAllRanges.present() ? "invalid" : (sendAllRanges.get().isReady() ? "ready" : "notReady"))
|
|
<< " sendAllLogs: "
|
|
<< (!sendAllLogs.present() ? "invalid" : (sendAllLogs.get().isReady() ? "ready" : "notReady"));
|
|
return ss.str();
|
|
}
|
|
};
|
|
|
|
// Each request for each loadingParam, so that scheduler can control which requests in which version batch to send first
|
|
struct RestoreLoaderSchedSendLoadParamRequest {
|
|
int batchIndex;
|
|
Promise<Void> toSched;
|
|
double start;
|
|
|
|
explicit RestoreLoaderSchedSendLoadParamRequest(int batchIndex, Promise<Void> toSched, double start)
|
|
: batchIndex(batchIndex), toSched(toSched), start(start){};
|
|
RestoreLoaderSchedSendLoadParamRequest() = default;
|
|
|
|
bool operator<(RestoreLoaderSchedSendLoadParamRequest const& rhs) const {
|
|
return batchIndex > rhs.batchIndex || (batchIndex == rhs.batchIndex && start > rhs.start);
|
|
}
|
|
|
|
std::string toString() const {
|
|
std::stringstream ss;
|
|
ss << "RestoreLoaderSchedSendLoadParamRequest: "
|
|
<< " batchIndex:" << batchIndex << " toSchedFutureIsReady:" << toSched.getFuture().isReady()
|
|
<< " start:" << start;
|
|
return ss.str();
|
|
}
|
|
};
|
|
|
|
struct RestoreLoaderData : RestoreRoleData, public ReferenceCounted<RestoreLoaderData> {
|
|
// buffered data per version batch
|
|
std::map<int, Reference<LoaderBatchData>> batch;
|
|
std::map<int, Reference<LoaderBatchStatus>> status;
|
|
RestoreControllerInterface ci;
|
|
|
|
KeyRangeMap<Version> rangeVersions;
|
|
|
|
Reference<IBackupContainer> bc; // Backup container is used to read backup files
|
|
Key bcUrl; // The url used to get the bc
|
|
|
|
// Request scheduler
|
|
std::priority_queue<RestoreLoadFileRequest> loadingQueue; // request queue of loading files
|
|
std::priority_queue<RestoreSendMutationsToAppliersRequest>
|
|
sendingQueue; // request queue of sending mutations to appliers
|
|
std::priority_queue<RestoreLoaderSchedSendLoadParamRequest> sendLoadParamQueue;
|
|
int finishedLoadingVB; // the max version batch index that finished loading file phase
|
|
int finishedSendingVB; // the max version batch index that finished sending mutations phase
|
|
int inflightSendingReqs; // number of sendingMutations requests released
|
|
int inflightLoadingReqs; // number of load backup file requests released
|
|
std::map<int, int> inflightSendLoadParamReqs; // key: batchIndex, value: inflightSendLoadParamReqs
|
|
|
|
Reference<AsyncVar<bool>> hasPendingRequests; // are there pending requests for loader
|
|
|
|
// addActor: add to actorCollection so that when an actor has error, the ActorCollection can catch the error.
|
|
// addActor is used to create the actorCollection when the RestoreController is created
|
|
PromiseStream<Future<Void>> addActor;
|
|
|
|
void addref() { return ReferenceCounted<RestoreLoaderData>::addref(); }
|
|
void delref() { return ReferenceCounted<RestoreLoaderData>::delref(); }
|
|
|
|
explicit RestoreLoaderData(UID loaderInterfID, int assignedIndex, RestoreControllerInterface ci)
|
|
: ci(ci), finishedLoadingVB(0), finishedSendingVB(0), inflightSendingReqs(0), inflightLoadingReqs(0) {
|
|
nodeID = loaderInterfID;
|
|
nodeIndex = assignedIndex;
|
|
role = RestoreRole::Loader;
|
|
hasPendingRequests = makeReference<AsyncVar<bool>>(false);
|
|
}
|
|
|
|
~RestoreLoaderData() override = default;
|
|
|
|
std::string describeNode() override {
|
|
std::stringstream ss;
|
|
ss << "[Role: Loader] [NodeID:" << nodeID.toString().c_str() << "] [NodeIndex:" << std::to_string(nodeIndex)
|
|
<< "]";
|
|
return ss.str();
|
|
}
|
|
|
|
int getVersionBatchState(int batchIndex) final {
|
|
std::map<int, Reference<LoaderBatchData>>::iterator item = batch.find(batchIndex);
|
|
if (item == batch.end()) { // Batch has not been initialized when we blindly profile the state
|
|
return LoaderVersionBatchState::INVALID;
|
|
} else {
|
|
return item->second->vbState.get();
|
|
}
|
|
}
|
|
void setVersionBatchState(int batchIndex, int vbState) final {
|
|
std::map<int, Reference<LoaderBatchData>>::iterator item = batch.find(batchIndex);
|
|
ASSERT(item != batch.end());
|
|
item->second->vbState = vbState;
|
|
}
|
|
|
|
void initVersionBatch(int batchIndex) override {
|
|
TraceEvent("FastRestoreLoaderInitVersionBatch", nodeID).detail("BatchIndex", batchIndex);
|
|
batch[batchIndex] = makeReference<LoaderBatchData>(nodeID, batchIndex);
|
|
status[batchIndex] = makeReference<LoaderBatchStatus>();
|
|
}
|
|
|
|
void resetPerRestoreRequest() override {
|
|
batch.clear();
|
|
status.clear();
|
|
finishedBatch = NotifiedVersion(0);
|
|
}
|
|
|
|
void initBackupContainer(Key url) {
|
|
if (bcUrl == url && bc.isValid()) {
|
|
return;
|
|
}
|
|
bcUrl = url;
|
|
bc = IBackupContainer::openContainer(url.toString());
|
|
}
|
|
};
|
|
|
|
ACTOR Future<Void> restoreLoaderCore(RestoreLoaderInterface loaderInterf,
|
|
int nodeIndex,
|
|
Database cx,
|
|
RestoreControllerInterface ci);
|
|
|
|
#include "flow/unactorcompiler.h"
|
|
#endif
|