foundationdb/fdbserver/RestoreLoader.actor.h

113 lines
3.8 KiB
C
Raw Normal View History

/*
* 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)
2019-08-02 08:00:13 +08:00
#define FDBSERVER_RESTORE_LOADER_G_H
#include "fdbserver/RestoreLoader.actor.g.h"
#elif !defined(FDBSERVER_RESTORE_LOADER_H)
2019-08-02 08:00:13 +08:00
#define FDBSERVER_RESTORE_LOADER_H
#include <sstream>
#include "flow/Stats.h"
#include "fdbclient/FDBTypes.h"
#include "fdbclient/CommitTransaction.h"
#include "fdbrpc/fdbrpc.h"
#include "fdbserver/CoordinationInterface.h"
#include "fdbrpc/Locality.h"
#include "fdbclient/RestoreWorkerInterface.actor.h"
#include "fdbserver/RestoreUtil.h"
#include "fdbserver/RestoreCommon.actor.h"
#include "fdbserver/RestoreRoleCommon.actor.h"
#include "fdbclient/BackupContainer.h"
#include "flow/actorcompiler.h" // has to be last include
struct RestoreLoaderData : RestoreRoleData, public ReferenceCounted<RestoreLoaderData> {
std::map<LoadingParam, Future<Void>> processedFileParams;
std::map<LoadingParam, VersionedMutationsMap> kvOpsPerLP; // Buffered kvOps for each loading param
2019-09-04 06:50:21 +08:00
// rangeToApplier is in master and loader. Loader uses this to determine which applier a mutation should be sent
2019-08-02 08:00:13 +08:00
// KeyRef is the inclusive lower bound of the key range the applier (UID) is responsible for
2019-09-04 06:50:21 +08:00
std::map<Standalone<KeyRef>, UID> rangeToApplier;
// Sampled mutations to be sent back to restore master
std::map<LoadingParam, Standalone<VectorRef<MutationRef>>> sampleMutations;
2019-08-02 08:00:13 +08:00
// keyOpsCount is the number of operations per key which is used to determine the key-range boundary for appliers
std::map<Standalone<KeyRef>, int> keyOpsCount;
int numSampledMutations; // The total number of mutations received from sampled data.
Reference<IBackupContainer> bc; // Backup container is used to read backup files
Key bcUrl; // The url used to get the bc
void addref() { return ReferenceCounted<RestoreLoaderData>::addref(); }
void delref() { return ReferenceCounted<RestoreLoaderData>::delref(); }
explicit RestoreLoaderData(UID loaderInterfID, int assignedIndex) {
nodeID = loaderInterfID;
nodeIndex = assignedIndex;
role = RestoreRole::Loader;
}
~RestoreLoaderData() = default;
std::string describeNode() {
std::stringstream ss;
2019-08-02 08:00:13 +08:00
ss << "[Role: Loader] [NodeID:" << nodeID.toString().c_str() << "] [NodeIndex:" << std::to_string(nodeIndex)
<< "]";
return ss.str();
}
2019-08-02 08:00:13 +08:00
void resetPerVersionBatch() {
TraceEvent("FastRestore").detail("ResetPerVersionBatchOnLoader", nodeID);
2019-09-04 06:50:21 +08:00
rangeToApplier.clear();
keyOpsCount.clear();
numSampledMutations = 0;
processedFileParams.clear();
kvOpsPerLP.clear();
}
// Only get the appliers that are responsible for a range
2019-08-02 08:00:13 +08:00
std::vector<UID> getWorkingApplierIDs() {
std::vector<UID> applierIDs;
2019-09-04 06:50:21 +08:00
for (auto& applier : rangeToApplier) {
2019-08-02 08:00:13 +08:00
applierIDs.push_back(applier.second);
}
2019-08-02 08:00:13 +08:00
ASSERT(!applierIDs.empty());
return applierIDs;
}
void initBackupContainer(Key url) {
2019-08-02 08:00:13 +08:00
if (bcUrl == url && bc.isValid()) {
return;
}
bcUrl = url;
bc = IBackupContainer::openContainer(url.toString());
}
};
ACTOR Future<Void> restoreLoaderCore(RestoreLoaderInterface loaderInterf, int nodeIndex, Database cx);
#include "flow/unactorcompiler.h"
2019-09-26 14:19:42 +08:00
#endif