2019-05-07 07:56:49 +08:00
|
|
|
/*
|
2019-05-13 12:53:09 +08:00
|
|
|
* RestoreApplier.actor.h
|
2019-05-07 07:56:49 +08:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2019-05-13 12:53:09 +08:00
|
|
|
// This file declears RestoreApplier interface and actors
|
2019-05-07 07:56:49 +08:00
|
|
|
|
|
|
|
#pragma once
|
2019-05-13 12:53:09 +08:00
|
|
|
#if defined(NO_INTELLISENSE) && !defined(FDBSERVER_RESTORE_APPLIER_G_H)
|
|
|
|
#define FDBSERVER_RESTORE_APPLIER_G_H
|
2019-05-07 07:56:49 +08:00
|
|
|
#include "fdbserver/RestoreApplier.actor.g.h"
|
2019-05-13 12:53:09 +08:00
|
|
|
#elif !defined(FDBSERVER_RESTORE_APPLIER_H)
|
|
|
|
#define FDBSERVER_RESTORE_APPLIER_H
|
2019-05-07 07:56:49 +08:00
|
|
|
|
|
|
|
#include <sstream>
|
|
|
|
#include "flow/Stats.h"
|
|
|
|
#include "fdbclient/FDBTypes.h"
|
|
|
|
#include "fdbclient/CommitTransaction.h"
|
|
|
|
#include "fdbrpc/fdbrpc.h"
|
|
|
|
#include "fdbrpc/Locality.h"
|
2019-05-13 12:53:09 +08:00
|
|
|
#include "fdbserver/CoordinationInterface.h"
|
2019-05-10 11:55:44 +08:00
|
|
|
#include "fdbserver/RestoreUtil.h"
|
|
|
|
#include "fdbserver/RestoreRoleCommon.actor.h"
|
2019-05-23 04:30:33 +08:00
|
|
|
#include "fdbserver/RestoreWorkerInterface.actor.h"
|
2019-05-07 07:56:49 +08:00
|
|
|
|
2019-05-10 11:55:44 +08:00
|
|
|
#include "flow/actorcompiler.h" // has to be last include
|
|
|
|
|
|
|
|
|
|
|
|
struct RestoreApplierData : RestoreRoleData, public ReferenceCounted<RestoreApplierData> {
|
2019-05-23 04:30:33 +08:00
|
|
|
NotifiedVersion rangeVersion; // All requests of mutations in range file below this version has been processed
|
|
|
|
NotifiedVersion logVersion; // All requests of mutations in log file below this version has been processed
|
2019-05-30 04:26:17 +08:00
|
|
|
Optional<Future<Void>> dbApplier;
|
2019-05-23 04:30:33 +08:00
|
|
|
|
2019-05-10 11:55:44 +08:00
|
|
|
// range2Applier is in master and loader node. Loader node uses this to determine which applier a mutation should be sent
|
|
|
|
std::map<Standalone<KeyRef>, UID> range2Applier; // KeyRef is the inclusive lower bound of the key range the applier (UID) is responsible for
|
|
|
|
std::map<Standalone<KeyRef>, int> keyOpsCount; // The number of operations per key which is used to determine the key-range boundary for appliers
|
|
|
|
|
|
|
|
// For master applier to hold the lower bound of key ranges for each appliers
|
|
|
|
std::vector<Standalone<KeyRef>> keyRangeLowerBounds;
|
|
|
|
|
|
|
|
// TODO: This block of variables may be moved to RestoreRoleData
|
|
|
|
bool inProgressApplyToDB = false;
|
|
|
|
|
2019-06-01 02:09:31 +08:00
|
|
|
// Mutations at each version
|
|
|
|
VersionedMutationsMap kvOps;
|
2019-05-10 11:55:44 +08:00
|
|
|
|
|
|
|
void addref() { return ReferenceCounted<RestoreApplierData>::addref(); }
|
|
|
|
void delref() { return ReferenceCounted<RestoreApplierData>::delref(); }
|
|
|
|
|
2019-05-15 06:04:07 +08:00
|
|
|
explicit RestoreApplierData(UID applierInterfID, int assignedIndex) {
|
2019-05-11 07:48:01 +08:00
|
|
|
nodeID = applierInterfID;
|
2019-05-15 06:04:07 +08:00
|
|
|
nodeIndex = assignedIndex;
|
2019-05-11 07:48:01 +08:00
|
|
|
|
2019-05-23 04:30:33 +08:00
|
|
|
// Q: Why do we need to initMetric?
|
|
|
|
//version.initMetric(LiteralStringRef("RestoreApplier.Version"), cc.id);
|
|
|
|
|
2019-05-11 07:48:01 +08:00
|
|
|
role = RestoreRole::Applier;
|
2019-05-10 11:55:44 +08:00
|
|
|
}
|
|
|
|
|
2019-05-23 04:30:33 +08:00
|
|
|
~RestoreApplierData() = default;
|
2019-05-10 11:55:44 +08:00
|
|
|
|
|
|
|
std::string describeNode() {
|
|
|
|
std::stringstream ss;
|
|
|
|
ss << "NodeID:" << nodeID.toString() << " nodeIndex:" << nodeIndex;
|
|
|
|
return ss.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
void resetPerVersionBatch() {
|
|
|
|
RestoreRoleData::resetPerVersionBatch();
|
|
|
|
|
|
|
|
inProgressApplyToDB = false;
|
|
|
|
kvOps.clear();
|
2019-05-30 04:26:17 +08:00
|
|
|
dbApplier = Optional<Future<Void>>();
|
2019-05-10 11:55:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void sanityCheckMutationOps() {
|
|
|
|
if (kvOps.empty())
|
|
|
|
return;
|
|
|
|
|
2019-06-05 13:17:08 +08:00
|
|
|
ASSERT_WE_THINK( isKVOpsSorted() );
|
|
|
|
ASSERT_WE_THINK( allOpsAreKnown() );
|
2019-05-10 11:55:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool isKVOpsSorted() {
|
|
|
|
bool ret = true;
|
|
|
|
auto prev = kvOps.begin();
|
|
|
|
for ( auto it = kvOps.begin(); it != kvOps.end(); ++it ) {
|
|
|
|
if ( prev->first > it->first ) {
|
|
|
|
ret = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
prev = it;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool allOpsAreKnown() {
|
|
|
|
bool ret = true;
|
|
|
|
for ( auto it = kvOps.begin(); it != kvOps.end(); ++it ) {
|
|
|
|
for ( auto m = it->second.begin(); m != it->second.end(); ++m ) {
|
|
|
|
if ( m->type == MutationRef::SetValue || m->type == MutationRef::ClearRange
|
|
|
|
|| isAtomicOp((MutationRef::Type) m->type) )
|
|
|
|
continue;
|
|
|
|
else {
|
2019-06-05 13:17:08 +08:00
|
|
|
TraceEvent(SevError, "FastRestore").detail("UnknownMutationType", m->type);
|
2019-05-10 11:55:44 +08:00
|
|
|
ret = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
ACTOR Future<Void> restoreApplierCore(Reference<RestoreApplierData> self, RestoreApplierInterface applierInterf, Database cx);
|
|
|
|
|
|
|
|
|
|
|
|
#include "flow/unactorcompiler.h"
|
2019-05-07 07:56:49 +08:00
|
|
|
#endif
|