foundationdb/fdbserver/workloads/TargetedKill.actor.cpp

142 lines
5.7 KiB
C++

/*
* TargetedKill.actor.cpp
*
* 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 "fdbclient/NativeAPI.actor.h"
#include "fdbserver/TesterInterface.actor.h"
#include "fdbserver/workloads/workloads.actor.h"
#include "fdbrpc/simulator.h"
#include "fdbserver/MasterInterface.h"
#include "fdbclient/SystemData.h"
#include "fdbserver/WorkerInterface.actor.h"
#include "fdbserver/ServerDBInfo.h"
#include "fdbserver/QuietDatabase.h"
#include "flow/actorcompiler.h" // This must be the last #include.
struct TargetedKillWorkload : TestWorkload {
std::string machineToKill;
bool enabled, killAllMachineProcesses;
double killAt;
TargetedKillWorkload(WorkloadContext const& wcx) : TestWorkload(wcx) {
enabled = !clientId; // only do this on the "first" client
killAt = getOption(options, LiteralStringRef("killAt"), 5.0);
machineToKill = getOption(options, LiteralStringRef("machineToKill"), LiteralStringRef("master")).toString();
killAllMachineProcesses = getOption(options, LiteralStringRef("killWholeMachine"), false);
}
std::string description() const override { return "TargetedKillWorkload"; }
Future<Void> setup(Database const& cx) override { return Void(); }
Future<Void> start(Database const& cx) override {
TraceEvent("StartTargetedKill").detail("Enabled", enabled);
if (enabled)
return assassin(cx, this);
return Void();
}
Future<bool> check(Database const& cx) override { return true; }
void getMetrics(std::vector<PerfMetric>& m) override {}
ACTOR Future<Void> killEndpoint(NetworkAddress address, Database cx, TargetedKillWorkload* self) {
if (&g_simulator == g_network) {
g_simulator.killInterface(address, ISimulator::KillInstantly);
return Void();
}
state std::vector<WorkerDetails> workers = wait(getWorkers(self->dbInfo));
int killed = 0;
for (int i = 0; i < workers.size(); i++) {
if (workers[i].interf.master.getEndpoint().getPrimaryAddress() == address ||
(self->killAllMachineProcesses &&
workers[i].interf.master.getEndpoint().getPrimaryAddress().ip == address.ip &&
workers[i].processClass != ProcessClass::TesterClass)) {
TraceEvent("WorkerKill").detail("TargetedMachine", address).detail("Worker", workers[i].interf.id());
workers[i].interf.clientInterface.reboot.send(RebootRequest());
}
}
if (!killed)
TraceEvent(SevWarn, "WorkerNotFoundAtEndpoint").detail("Address", address);
else
TraceEvent("WorkersKilledAtEndpoint").detail("Address", address).detail("KilledProcesses", killed);
return Void();
}
ACTOR Future<Void> assassin(Database cx, TargetedKillWorkload* self) {
wait(delay(self->killAt));
state std::vector<StorageServerInterface> storageServers = wait(getStorageServers(cx));
NetworkAddress machine;
if (self->machineToKill == "master") {
machine = self->dbInfo->get().master.address();
} else if (self->machineToKill == "commitproxy") {
auto commitProxies = cx->getCommitProxies(false);
int o = deterministicRandom()->randomInt(0, commitProxies->size());
for (int i = 0; i < commitProxies->size(); i++) {
CommitProxyInterface mpi = commitProxies->getInterface(o);
machine = mpi.address();
if (machine != self->dbInfo->get().clusterInterface.getWorkers.getEndpoint().getPrimaryAddress())
break;
o = ++o % commitProxies->size();
}
} else if (self->machineToKill == "grvproxy") {
auto grvProxies = cx->getGrvProxies(false);
int o = deterministicRandom()->randomInt(0, grvProxies->size());
for (int i = 0; i < grvProxies->size(); i++) {
GrvProxyInterface gpi = grvProxies->getInterface(o);
machine = gpi.address();
if (machine != self->dbInfo->get().clusterInterface.getWorkers.getEndpoint().getPrimaryAddress())
break;
o = ++o % grvProxies->size();
}
} else if (self->machineToKill == "tlog") {
auto tlogs = self->dbInfo->get().logSystemConfig.allPresentLogs();
int o = deterministicRandom()->randomInt(0, tlogs.size());
for (int i = 0; i < tlogs.size(); i++) {
TLogInterface tli = tlogs[o];
machine = tli.address();
if (machine != self->dbInfo->get().clusterInterface.getWorkers.getEndpoint().getPrimaryAddress())
break;
o = ++o % tlogs.size();
}
} else if (self->machineToKill == "storage" || self->machineToKill == "ss" ||
self->machineToKill == "storageserver") {
int o = deterministicRandom()->randomInt(0, storageServers.size());
for (int i = 0; i < storageServers.size(); i++) {
StorageServerInterface ssi = storageServers[o];
machine = ssi.address();
if (machine != self->dbInfo->get().clusterInterface.getWorkers.getEndpoint().getPrimaryAddress())
break;
o = ++o % storageServers.size();
}
} else if (self->machineToKill == "clustercontroller" || self->machineToKill == "cc") {
machine = self->dbInfo->get().clusterInterface.getWorkers.getEndpoint().getPrimaryAddress();
}
TraceEvent("IsolatedMark").detail("TargetedMachine", machine).detail("Role", self->machineToKill);
wait(self->killEndpoint(machine, cx, self));
return Void();
}
};
WorkloadFactory<TargetedKillWorkload> TargetedKillWorkloadFactory("TargetedKill");