foundationdb/fdbserver/workloads/ChangeConfig.actor.cpp

108 lines
4.1 KiB
C++
Raw Normal View History

2017-05-26 04:48:44 +08:00
/*
* ChangeConfig.actor.cpp
*
* This source file is part of the FoundationDB open source project
*
* Copyright 2013-2018 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"
2017-05-26 04:48:44 +08:00
#include "fdbclient/ClusterInterface.h"
#include "fdbserver/TesterInterface.actor.h"
#include "fdbclient/ManagementAPI.actor.h"
#include "fdbserver/workloads/workloads.actor.h"
2017-05-26 04:48:44 +08:00
#include "fdbrpc/simulator.h"
#include "flow/actorcompiler.h" // This must be the last #include.
2017-05-26 04:48:44 +08:00
struct ChangeConfigWorkload : TestWorkload {
double minDelayBeforeChange, maxDelayBeforeChange;
std::string configMode; //<\"single\"|\"double\"|\"triple\">
std::string networkAddresses; //comma separated list e.g. "127.0.0.1:4000,127.0.0.1:4001"
ChangeConfigWorkload(WorkloadContext const& wcx)
: TestWorkload(wcx)
{
minDelayBeforeChange = getOption( options, LiteralStringRef("minDelayBeforeChange"), 0 );
maxDelayBeforeChange = getOption( options, LiteralStringRef("maxDelayBeforeChange"), 0 );
ASSERT( maxDelayBeforeChange >= minDelayBeforeChange );
configMode = getOption( options, LiteralStringRef("configMode"), StringRef() ).toString();
networkAddresses = getOption( options, LiteralStringRef("coordinators"), StringRef() ).toString();
}
2020-10-05 13:29:07 +08:00
std::string description() const override { return "ChangeConfig"; }
2017-05-26 04:48:44 +08:00
2020-10-05 13:29:07 +08:00
Future<Void> start(Database const& cx) override {
2017-05-26 04:48:44 +08:00
if( this->clientId != 0 ) return Void();
return ChangeConfigClient( cx->clone(), this );
}
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
2020-10-05 13:29:07 +08:00
void getMetrics(vector<PerfMetric>& m) override {}
2017-05-26 04:48:44 +08:00
ACTOR Future<Void> extraDatabaseConfigure(ChangeConfigWorkload *self) {
2017-05-26 04:48:44 +08:00
if (g_network->isSimulated() && g_simulator.extraDB) {
Reference<ClusterConnectionFile> extraFile(new ClusterConnectionFile(*g_simulator.extraDB));
state Database extraDB = Database::createDatabase(extraFile, -1);
2017-05-26 04:48:44 +08:00
wait(delay(5*deterministicRandom()->random01()));
if (self->configMode.size()) {
wait(success(changeConfig(extraDB, self->configMode, true)));
2018-04-30 09:54:47 +08:00
TraceEvent("WaitForReplicasExtra");
wait( waitForFullReplication( extraDB ) );
2018-04-30 09:54:47 +08:00
TraceEvent("WaitForReplicasExtraEnd");
} if (self->networkAddresses.size()) {
2017-05-26 04:48:44 +08:00
if (self->networkAddresses == "auto")
wait(success(changeQuorum(extraDB, autoQuorumChange())));
2017-05-26 04:48:44 +08:00
else
wait(success(changeQuorum(extraDB, specifiedQuorumChange(NetworkAddress::parseList(self->networkAddresses)))));
2017-05-26 04:48:44 +08:00
}
wait(delay(5*deterministicRandom()->random01()));
}
return Void();
}
ACTOR Future<Void> ChangeConfigClient( Database cx, ChangeConfigWorkload *self) {
wait( delay( self->minDelayBeforeChange + deterministicRandom()->random01() * ( self->maxDelayBeforeChange - self->minDelayBeforeChange ) ) );
state bool extraConfigureBefore = deterministicRandom()->random01() < 0.5;
if(extraConfigureBefore) {
wait( self->extraDatabaseConfigure(self) );
2017-05-26 04:48:44 +08:00
}
if( self->configMode.size() ) {
wait(success( changeConfig( cx, self->configMode, true ) ));
2018-04-30 09:54:47 +08:00
TraceEvent("WaitForReplicas");
wait( waitForFullReplication( cx ) );
2018-04-30 09:54:47 +08:00
TraceEvent("WaitForReplicasEnd");
}
2017-05-26 04:48:44 +08:00
if( self->networkAddresses.size() ) {
if (self->networkAddresses == "auto")
wait(success( changeQuorum( cx, autoQuorumChange() ) ));
2017-05-26 04:48:44 +08:00
else
wait(success( changeQuorum( cx, specifiedQuorumChange(NetworkAddress::parseList( self->networkAddresses )) ) ));
2017-05-26 04:48:44 +08:00
}
if(!extraConfigureBefore) {
wait( self->extraDatabaseConfigure(self) );
}
2017-05-26 04:48:44 +08:00
return Void();
}
};
WorkloadFactory<ChangeConfigWorkload> ChangeConfigWorkloadFactory("ChangeConfig");