foundationdb/fdbserver/ConfigBroadcaster.actor.cpp
2021-05-12 17:24:13 -07:00

186 lines
7.4 KiB
C++

/*
* ConfigBroadcaster.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.
*/
#include "fdbserver/ConfigBroadcaster.h"
#include "fdbserver/SimpleConfigConsumer.h"
#include "flow/actorcompiler.h" // must be last include
class ConfigBroadcasterImpl {
std::map<Key, Endpoint::Token> configClassToToken;
std::map<Endpoint::Token, ReplyPromise<ConfigFollowerGetChangesRequest>> tokenToReply;
std::map<Endpoint::Token, std::vector<Key>> tokenToConfigClasses;
std::map<ConfigKey, Value> snapshot;
std::deque<Standalone<VersionedConfigMutationRef>> versionedMutations;
Version lastCompactedVersion;
Version mostRecentVersion;
std::unique_ptr<IConfigConsumer> consumer;
ActorCollection actors{ false };
CounterCollection cc;
Counter compactRequest;
Counter successfulChangeRequest;
Counter failedChangeRequest;
Counter snapshotRequest;
Future<Void> logger;
ConfigBroadcasterImpl()
: lastCompactedVersion(0), mostRecentVersion(0), cc("ConfigBroadcaster"), compactRequest("CompactRequest", cc),
successfulChangeRequest("SuccessfulChangeRequest", cc), failedChangeRequest("FailedChangeRequest", cc),
snapshotRequest("SnapshotRequest", cc) {
logger = traceCounters(
"ConfigBroadcasterMetrics", UID{}, SERVER_KNOBS->WORKER_LOGGING_INTERVAL, &cc, "ConfigBroadcasterMetrics");
}
ACTOR static Future<Void> serve(ConfigBroadcaster* self, ConfigBroadcasterImpl* impl, ConfigFollowerInterface cfi) {
wait(impl->consumer->getInitialSnapshot(*self));
impl->actors.add(impl->consumer->consume(*self));
loop {
choose {
when(ConfigFollowerGetVersionRequest req = waitNext(cfi.getVersion.getFuture())) {
req.reply.send(impl->mostRecentVersion);
}
when(ConfigFollowerGetSnapshotRequest req = waitNext(cfi.getSnapshot.getFuture())) {
++impl->snapshotRequest;
ConfigFollowerGetSnapshotReply reply;
reply.snapshot = impl->snapshot;
for (const auto& versionedMutation : impl->versionedMutations) {
const auto& version = versionedMutation.version;
const auto& mutation = versionedMutation.mutation;
if (version > req.version) {
break;
}
if (req.configClassSet.contains(mutation.getConfigClass())) {
TraceEvent(SevDebug, "BroadcasterAppendingMutationToSnapshotOutput")
.detail("ReqVersion", req.version)
.detail("MutationVersion", version)
.detail("ConfigClass", mutation.getConfigClass())
.detail("KnobName", mutation.getKnobName())
.detail("KnobValue", mutation.getValue());
if (mutation.isSet()) {
reply.snapshot[mutation.getKey()] = mutation.getValue();
} else {
reply.snapshot.erase(mutation.getKey());
}
}
}
req.reply.send(reply);
}
when(ConfigFollowerGetChangesRequest req = waitNext(cfi.getChanges.getFuture())) {
if (req.lastSeenVersion < impl->lastCompactedVersion) {
req.reply.sendError(version_already_compacted());
++impl->failedChangeRequest;
continue;
}
ConfigFollowerGetChangesReply reply;
reply.mostRecentVersion = impl->mostRecentVersion;
for (const auto& versionedMutation : impl->versionedMutations) {
if (versionedMutation.version > req.lastSeenVersion &&
req.configClassSet.contains(versionedMutation.mutation.getConfigClass())) {
TraceEvent(SevDebug, "BroadcasterSendingChangeMutation")
.detail("Version", versionedMutation.version)
.detail("ReqLastSeenVersion", req.lastSeenVersion)
.detail("ConfigClass", versionedMutation.mutation.getConfigClass())
.detail("KnobName", versionedMutation.mutation.getKnobName())
.detail("KnobValue", versionedMutation.mutation.getValue());
reply.versionedMutations.push_back_deep(reply.versionedMutations.arena(),
versionedMutation);
}
}
req.reply.send(reply);
++impl->successfulChangeRequest;
}
when(ConfigFollowerCompactRequest req = waitNext(cfi.compact.getFuture())) {
++impl->compactRequest;
while (!impl->versionedMutations.empty()) {
const auto& versionedMutation = impl->versionedMutations.front();
const auto& version = versionedMutation.version;
const auto& mutation = versionedMutation.mutation;
if (version > req.version) {
break;
} else {
TraceEvent(SevDebug, "BroadcasterCompactingMutation")
.detail("ReqVersion", req.version)
.detail("MutationVersion", version)
.detail("ConfigClass", mutation.getConfigClass())
.detail("KnobName", mutation.getKnobName())
.detail("KnobValue", mutation.getValue())
.detail("LastCompactedVersion", impl->lastCompactedVersion);
if (mutation.isSet()) {
impl->snapshot[mutation.getKey()] = mutation.getValue();
} else {
impl->snapshot.erase(mutation.getKey());
}
impl->lastCompactedVersion = version;
impl->versionedMutations.pop_front();
}
}
req.reply.send(Void());
}
when(wait(impl->actors.getResult())) { ASSERT(false); }
}
}
}
public:
Future<Void> serve(ConfigBroadcaster* self, ConfigFollowerInterface const& cfi) { return serve(self, this, cfi); }
void addVersionedMutations(Standalone<VectorRef<VersionedConfigMutationRef>> const& versionedMutations,
Version mostRecentVersion) {
this->versionedMutations.insert(
this->versionedMutations.end(), versionedMutations.begin(), versionedMutations.end());
this->mostRecentVersion = mostRecentVersion;
}
void setSnapshot(std::map<ConfigKey, Value>&& snapshot, Version lastCompactedVersion) {
this->snapshot = std::move(snapshot);
this->lastCompactedVersion = lastCompactedVersion;
}
ConfigBroadcasterImpl(ClusterConnectionString const& ccs) : ConfigBroadcasterImpl() {
consumer = std::make_unique<SimpleConfigConsumer>(ccs);
}
ConfigBroadcasterImpl(ServerCoordinators const& coordinators) : ConfigBroadcasterImpl() {
consumer = std::make_unique<SimpleConfigConsumer>(coordinators);
}
};
ConfigBroadcaster::ConfigBroadcaster(ClusterConnectionString const& ccs)
: impl(std::make_unique<ConfigBroadcasterImpl>(ccs)) {}
ConfigBroadcaster::ConfigBroadcaster(ServerCoordinators const& coordinators)
: impl(std::make_unique<ConfigBroadcasterImpl>(coordinators)) {}
ConfigBroadcaster::~ConfigBroadcaster() = default;
Future<Void> ConfigBroadcaster::serve(ConfigFollowerInterface const& cfi) {
return impl->serve(this, cfi);
}
void ConfigBroadcaster::addVersionedMutations(
Standalone<VectorRef<VersionedConfigMutationRef>> const& versionedMutations,
Version mostRecentVersion) {
impl->addVersionedMutations(versionedMutations, mostRecentVersion);
}
void ConfigBroadcaster::setSnapshot(std::map<ConfigKey, Value>&& snapshot, Version lastCompactedVersion) {
impl->setSnapshot(std::move(snapshot), lastCompactedVersion);
}