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
|
2018-02-22 02:25:11 +08:00
|
|
|
*
|
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
|
2018-02-22 02:25:11 +08:00
|
|
|
*
|
2017-05-26 04:48:44 +08:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2018-02-22 02:25:11 +08:00
|
|
|
*
|
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.
|
|
|
|
*/
|
|
|
|
|
2019-02-18 07:41:16 +08:00
|
|
|
#include "fdbclient/NativeAPI.actor.h"
|
2017-05-26 04:48:44 +08:00
|
|
|
#include "fdbclient/ClusterInterface.h"
|
2019-02-18 11:25:16 +08:00
|
|
|
#include "fdbserver/TesterInterface.actor.h"
|
2019-02-18 09:38:13 +08:00
|
|
|
#include "fdbclient/ManagementAPI.actor.h"
|
2019-02-18 11:18:30 +08:00
|
|
|
#include "fdbserver/workloads/workloads.actor.h"
|
2017-05-26 04:48:44 +08:00
|
|
|
#include "fdbrpc/simulator.h"
|
2018-08-11 06:18:24 +08:00
|
|
|
#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
|
|
|
|
2017-06-01 07:23:37 +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));
|
2018-09-22 06:58:14 +08:00
|
|
|
state Database extraDB = Database::createDatabase(extraFile, -1);
|
2017-05-26 04:48:44 +08:00
|
|
|
|
2019-05-11 05:01:52 +08:00
|
|
|
wait(delay(5*deterministicRandom()->random01()));
|
2018-04-09 12:24:05 +08:00
|
|
|
if (self->configMode.size()) {
|
2019-02-13 08:07:17 +08:00
|
|
|
wait(success(changeConfig(extraDB, self->configMode, true)));
|
2018-04-30 09:54:47 +08:00
|
|
|
TraceEvent("WaitForReplicasExtra");
|
2018-08-11 04:57:10 +08:00
|
|
|
wait( waitForFullReplication( extraDB ) );
|
2018-04-30 09:54:47 +08:00
|
|
|
TraceEvent("WaitForReplicasExtraEnd");
|
2018-04-09 12:24:05 +08:00
|
|
|
} if (self->networkAddresses.size()) {
|
2017-05-26 04:48:44 +08:00
|
|
|
if (self->networkAddresses == "auto")
|
2019-02-13 08:07:17 +08:00
|
|
|
wait(success(changeQuorum(extraDB, autoQuorumChange())));
|
2017-05-26 04:48:44 +08:00
|
|
|
else
|
2019-02-13 08:07:17 +08:00
|
|
|
wait(success(changeQuorum(extraDB, specifiedQuorumChange(NetworkAddress::parseList(self->networkAddresses)))));
|
2017-05-26 04:48:44 +08:00
|
|
|
}
|
2019-05-11 05:01:52 +08:00
|
|
|
wait(delay(5*deterministicRandom()->random01()));
|
2017-06-01 07:23:37 +08:00
|
|
|
}
|
|
|
|
return Void();
|
|
|
|
}
|
|
|
|
|
|
|
|
ACTOR Future<Void> ChangeConfigClient( Database cx, ChangeConfigWorkload *self) {
|
2019-05-11 05:01:52 +08:00
|
|
|
wait( delay( self->minDelayBeforeChange + deterministicRandom()->random01() * ( self->maxDelayBeforeChange - self->minDelayBeforeChange ) ) );
|
2017-06-01 07:23:37 +08:00
|
|
|
|
2019-05-11 05:01:52 +08:00
|
|
|
state bool extraConfigureBefore = deterministicRandom()->random01() < 0.5;
|
2017-06-01 07:23:37 +08:00
|
|
|
|
|
|
|
if(extraConfigureBefore) {
|
2018-08-11 04:57:10 +08:00
|
|
|
wait( self->extraDatabaseConfigure(self) );
|
2017-05-26 04:48:44 +08:00
|
|
|
}
|
|
|
|
|
2018-04-09 12:24:05 +08:00
|
|
|
if( self->configMode.size() ) {
|
2019-02-13 08:07:17 +08:00
|
|
|
wait(success( changeConfig( cx, self->configMode, true ) ));
|
2018-04-30 09:54:47 +08:00
|
|
|
TraceEvent("WaitForReplicas");
|
2018-08-11 04:57:10 +08:00
|
|
|
wait( waitForFullReplication( cx ) );
|
2018-04-30 09:54:47 +08:00
|
|
|
TraceEvent("WaitForReplicasEnd");
|
2018-04-09 12:24:05 +08:00
|
|
|
}
|
2017-05-26 04:48:44 +08:00
|
|
|
if( self->networkAddresses.size() ) {
|
|
|
|
if (self->networkAddresses == "auto")
|
2019-02-13 08:07:17 +08:00
|
|
|
wait(success( changeQuorum( cx, autoQuorumChange() ) ));
|
2017-05-26 04:48:44 +08:00
|
|
|
else
|
2019-02-13 08:07:17 +08:00
|
|
|
wait(success( changeQuorum( cx, specifiedQuorumChange(NetworkAddress::parseList( self->networkAddresses )) ) ));
|
2017-05-26 04:48:44 +08:00
|
|
|
}
|
2017-06-01 07:23:37 +08:00
|
|
|
|
|
|
|
if(!extraConfigureBefore) {
|
2018-08-11 04:57:10 +08:00
|
|
|
wait( self->extraDatabaseConfigure(self) );
|
2017-06-01 07:23:37 +08:00
|
|
|
}
|
|
|
|
|
2017-05-26 04:48:44 +08:00
|
|
|
return Void();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
WorkloadFactory<ChangeConfigWorkload> ChangeConfigWorkloadFactory("ChangeConfig");
|