foundationdb/fdbserver/workloads/DDMetrics.actor.cpp

78 lines
2.8 KiB
C++
Raw Normal View History

2017-05-26 04:48:44 +08:00
/*
* DDMetrics.actor.cpp
*
* This source file is part of the FoundationDB open source project
*
2022-03-22 04:36:23 +08:00
* Copyright 2013-2022 Apple Inc. and the FoundationDB project authors
*
2017-05-26 04:48:44 +08:00
* 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
*
2017-05-26 04:48:44 +08:00
* http://www.apache.org/licenses/LICENSE-2.0
*
2017-05-26 04:48:44 +08:00
* 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"
2017-05-26 04:48:44 +08:00
#include "fdbserver/Status.h"
#include "fdbserver/QuietDatabase.h"
#include "fdbserver/ServerDBInfo.h"
#include "fdbserver/workloads/workloads.actor.h"
#include "flow/actorcompiler.h" // This must be the last #include.
2017-05-26 04:48:44 +08:00
struct DDMetricsWorkload : TestWorkload {
double startDelay, ddDone;
DDMetricsWorkload(WorkloadContext const& wcx) : TestWorkload(wcx), ddDone(0.0) {
startDelay = getOption(options, LiteralStringRef("beginPoll"), 10.0);
2017-05-26 04:48:44 +08:00
}
2020-10-05 13:29:07 +08:00
std::string description() const override { return "Data Distribution Metrics"; }
2017-05-26 04:48:44 +08:00
ACTOR Future<int> getHighPriorityRelocationsInFlight(Database cx, DDMetricsWorkload* self) {
2017-05-26 04:48:44 +08:00
WorkerInterface masterWorker = wait(getMasterWorker(cx, self->dbInfo));
TraceEvent("GetHighPriorityReliocationsInFlight").detail("Stage", "ContactingMaster");
TraceEventFields md = wait(
timeoutError(masterWorker.eventLogRequest.getReply(EventLogRequest(LiteralStringRef("MovingData"))), 1.0));
2017-05-26 04:48:44 +08:00
int relocations;
sscanf(md.getValue("UnhealthyRelocations").c_str(), "%d", &relocations);
2017-05-26 04:48:44 +08:00
return relocations;
}
ACTOR Future<Void> work(Database cx, DDMetricsWorkload* self) {
2017-05-26 04:48:44 +08:00
try {
TraceEvent("DDMetricsWaiting").detail("StartDelay", self->startDelay);
wait(delay(self->startDelay));
TraceEvent("DDMetricsStarting").log();
2017-05-26 04:48:44 +08:00
state double startTime = now();
loop {
wait(delay(2.5));
int dif = wait(self->getHighPriorityRelocationsInFlight(cx, self));
2017-05-26 04:48:44 +08:00
TraceEvent("DDMetricsCheck").detail("DIF", dif);
if (dif == 0) {
2017-05-26 04:48:44 +08:00
self->ddDone = now() - startTime;
return Void();
}
}
} catch (Error& e) {
2017-05-26 04:48:44 +08:00
TraceEvent("DDMetricsError").error(e);
}
return Void();
}
2020-10-05 13:29:07 +08:00
Future<Void> start(Database const& cx) override { return clientId == 0 ? work(cx, this) : Void(); }
2017-05-26 04:48:44 +08:00
2020-10-05 13:29:07 +08:00
Future<bool> check(Database const& cx) override { return true; }
2017-05-26 04:48:44 +08:00
void getMetrics(std::vector<PerfMetric>& m) override { m.emplace_back("DDDuration", ddDone, Averaged::False); }
2017-05-26 04:48:44 +08:00
};
WorkloadFactory<DDMetricsWorkload> DDMetricsWorkloadFactory("DDMetrics");