foundationdb/fdbserver/LocalConfiguration.actor.cpp

562 lines
19 KiB
C++
Raw Normal View History

/*
* LocalConfiguration.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/Knobs.h"
#include "fdbclient/Tuple.h"
2021-04-25 08:22:58 +08:00
#include "fdbserver/IKeyValueStore.h"
#include "fdbserver/Knobs.h"
#include "fdbserver/LocalConfiguration.h"
#include "fdbserver/SimpleConfigConsumer.h"
#include "flow/Knobs.h"
2021-05-13 02:56:45 +08:00
#include "flow/UnitTest.h"
#include "flow/actorcompiler.h" // This must be the last #include.
2021-04-25 08:22:58 +08:00
namespace {
const KeyRef configPathKey = "configPath"_sr;
const KeyRef lastSeenVersionKey = "lastSeenVersion"_sr;
const KeyRangeRef knobOverrideKeys = KeyRangeRef("knobOverride/"_sr, "knobOverride0"_sr);
2021-04-25 08:22:58 +08:00
bool updateSingleKnob(Key knobName, Value knobValue) {
return false;
}
template <class K, class... Rest>
bool updateSingleKnob(Key knobName, Value knobValue, K& k, Rest&... rest) {
if (k.setKnob(knobName.toString(), knobValue.toString())) {
return true;
} else {
return updateSingleKnob(knobName, knobValue, rest...);
}
}
class ConfigKnobOverrides {
Standalone<VectorRef<KeyRef>> configPath;
std::map<Key, std::map<Key, Value>> configClassToKnobToValue;
public:
ConfigKnobOverrides() = default;
2021-05-13 02:56:45 +08:00
explicit ConfigKnobOverrides(std::string const& paramString) {
// TODO: Validate string
2021-05-13 02:56:45 +08:00
StringRef s(reinterpret_cast<uint8_t const*>(paramString.c_str()), paramString.size());
while (s.size()) {
configPath.push_back_deep(configPath.arena(), s.eat("/"_sr));
configClassToKnobToValue[configPath.back()] = {};
}
}
ConfigClassSet getConfigClassSet() const { return ConfigClassSet(configPath); }
void set(KeyRef configClass, KeyRef knobName, ValueRef value) {
configClassToKnobToValue[configClass][knobName] = value;
}
void remove(KeyRef configClass, KeyRef knobName) { configClassToKnobToValue[configClass].erase(knobName); }
template <class... KS>
void update(KS&... knobCollections) const {
for (const auto& configClass : configPath) {
const auto& knobToValue = configClassToKnobToValue.find(configClass);
2021-05-13 02:56:45 +08:00
ASSERT(knobToValue != configClassToKnobToValue.end());
for (const auto& [knobName, knobValue] : knobToValue->second) {
// Assert here because we should be validating on the client
ASSERT(updateSingleKnob(knobName, knobValue, knobCollections...));
}
}
}
bool hasSameConfigPath(ConfigKnobOverrides const& other) const { return configPath == other.configPath; }
template <class Ar>
void serialize(Ar& ar) {
serializer(ar, configPath);
}
};
class ManualKnobOverrides {
std::map<Key, Value> overrides;
public:
2021-05-13 02:56:45 +08:00
explicit ManualKnobOverrides(std::map<Key, Value>&& overrides) : overrides(std::move(overrides)) {}
template <class... KS>
void update(KS&... knobCollections) const {
for (const auto& [knobName, knobValue] : overrides) {
if (!updateSingleKnob(knobName, knobValue, knobCollections...)) {
fprintf(stderr, "WARNING: Unrecognized knob option '%s'\n", knobName.toString().c_str());
TraceEvent(SevWarnAlways, "UnrecognizedKnobOption").detail("Knob", printable(knobName));
}
}
}
};
2021-04-25 08:22:58 +08:00
} // namespace
class LocalConfigurationImpl : public NonCopyable {
IKeyValueStore* kvStore;
2021-04-25 08:22:58 +08:00
Future<Void> initFuture;
FlowKnobs flowKnobs;
ClientKnobs clientKnobs;
ServerKnobs serverKnobs;
TestKnobs testKnobs;
ManualKnobOverrides manualKnobOverrides;
ConfigKnobOverrides configKnobOverrides;
ActorCollection actors{ false };
ACTOR static Future<Void> saveConfigPath(LocalConfigurationImpl* self) {
self->kvStore->set(
KeyValueRef(configPathKey, BinaryWriter::toValue(self->configKnobOverrides, IncludeVersion())));
2021-04-25 08:22:58 +08:00
wait(self->kvStore->commit());
return Void();
}
2021-04-25 08:22:58 +08:00
ACTOR static Future<Void> clearKVStore(LocalConfigurationImpl *self) {
self->kvStore->clear(singleKeyRange(configPathKey));
self->kvStore->clear(knobOverrideKeys);
2021-04-25 08:22:58 +08:00
wait(self->kvStore->commit());
return Void();
}
ACTOR static Future<Version> getLastSeenVersion(LocalConfigurationImpl* self) {
state Version result = 0;
state Optional<Value> lastSeenVersionValue = wait(self->kvStore->readValue(lastSeenVersionKey));
if (!lastSeenVersionValue.present()) {
self->kvStore->set(KeyValueRef(lastSeenVersionKey, BinaryWriter::toValue(result, IncludeVersion())));
wait(self->kvStore->commit());
} else {
result = BinaryReader::fromStringRef<Version>(lastSeenVersionValue.get(), IncludeVersion());
}
return result;
}
ACTOR static Future<Void> initialize(LocalConfigurationImpl* self) {
2021-04-25 08:22:58 +08:00
wait(self->kvStore->init());
state Optional<Value> storedConfigPathValue = wait(self->kvStore->readValue(configPathKey));
if (!storedConfigPathValue.present()) {
wait(saveConfigPath(self));
self->updateInMemoryKnobs();
2021-04-25 08:22:58 +08:00
return Void();
}
state ConfigKnobOverrides storedConfigPath =
BinaryReader::fromStringRef<ConfigKnobOverrides>(storedConfigPathValue.get(), IncludeVersion());
if (!storedConfigPath.hasSameConfigPath(self->configKnobOverrides)) {
2021-04-25 08:22:58 +08:00
// All local information is outdated
wait(clearKVStore(self));
wait(saveConfigPath(self));
self->updateInMemoryKnobs();
2021-04-25 08:22:58 +08:00
return Void();
}
Standalone<RangeResultRef> range = wait(self->kvStore->readRange(knobOverrideKeys));
2021-04-25 08:22:58 +08:00
for (const auto &kv : range) {
auto configKey =
BinaryReader::fromStringRef<ConfigKey>(kv.key.removePrefix(knobOverrideKeys.begin), IncludeVersion());
self->configKnobOverrides.set(configKey.configClass, configKey.knobName, kv.value);
2021-04-25 08:22:58 +08:00
}
self->updateInMemoryKnobs();
2021-04-25 08:22:58 +08:00
return Void();
}
2021-05-13 02:56:45 +08:00
void initializeKnobs(bool randomize = false, bool isSimulated = false) {
flowKnobs.initialize(randomize, isSimulated);
clientKnobs.initialize(randomize);
serverKnobs.initialize(randomize, &clientKnobs, isSimulated);
testKnobs.initialize();
}
void resetKnobs() {
flowKnobs.reset();
clientKnobs.reset();
2021-05-13 02:56:45 +08:00
serverKnobs.reset(&clientKnobs);
testKnobs.reset();
}
void updateInMemoryKnobs() {
resetKnobs();
configKnobOverrides.update(flowKnobs, clientKnobs, serverKnobs, testKnobs);
manualKnobOverrides.update(flowKnobs, clientKnobs, serverKnobs, testKnobs);
// Must reinitialize in order to update dependent knobs
initializeKnobs();
}
ACTOR static Future<Void> setSnapshot(LocalConfigurationImpl* self,
std::map<ConfigKey, Value> snapshot,
Version lastCompactedVersion) {
// TODO: Concurrency control?
self->kvStore->clear(knobOverrideKeys);
for (const auto& [configKey, knobValue] : snapshot) {
self->configKnobOverrides.set(configKey.configClass, configKey.knobName, knobValue);
self->kvStore->set(KeyValueRef(
BinaryWriter::toValue(configKey, IncludeVersion()).withPrefix(knobOverrideKeys.begin), knobValue));
}
self->kvStore->set(
KeyValueRef(lastSeenVersionKey, BinaryWriter::toValue(lastCompactedVersion, IncludeVersion())));
wait(self->kvStore->commit());
self->updateInMemoryKnobs();
return Void();
}
ACTOR static Future<Void> addVersionedMutations(
LocalConfigurationImpl* self,
Standalone<VectorRef<VersionedConfigMutationRef>> versionedMutations,
Version mostRecentVersion) {
// TODO: Concurrency control?
for (const auto& versionedMutation : versionedMutations) {
const auto &mutation = versionedMutation.mutation;
auto serializedKey = BinaryWriter::toValue(mutation.getKey(), IncludeVersion());
if (mutation.isSet()) {
self->kvStore->set(KeyValueRef(serializedKey.withPrefix(knobOverrideKeys.begin), mutation.getValue()));
self->configKnobOverrides.set(mutation.getConfigClass(), mutation.getKnobName(), mutation.getValue());
} else {
self->kvStore->clear(singleKeyRange(serializedKey.withPrefix(knobOverrideKeys.begin)));
self->configKnobOverrides.remove(mutation.getConfigClass(), mutation.getKnobName());
}
}
self->kvStore->set(KeyValueRef(lastSeenVersionKey, BinaryWriter::toValue(mostRecentVersion, IncludeVersion())));
wait(self->kvStore->commit());
self->updateInMemoryKnobs();
return Void();
}
ACTOR static Future<Void> monitorBroadcaster(Reference<AsyncVar<ServerDBInfo> const> serverDBInfo,
Reference<AsyncVar<ConfigFollowerInterface>> broadcaster) {
loop {
wait(serverDBInfo->onChange());
broadcaster->set(serverDBInfo->get().configBroadcaster);
}
}
ACTOR static Future<Void> consumeLoopIteration(LocalConfiguration* self,
LocalConfigurationImpl* impl,
Reference<AsyncVar<ConfigFollowerInterface>> broadcaster) {
// TODO: Cache lastSeenVersion in memory
// state Version lastSeenVersion = wait(impl->getLastSeenVersion());
state SimpleConfigConsumer consumer(broadcaster->get());
choose {
when(wait(broadcaster->onChange())) {}
when(wait(brokenPromiseToNever(consumer.consume(*self)))) { ASSERT(false); }
when(wait(impl->actors.getResult())) { ASSERT(false); }
}
return Void();
}
ACTOR static Future<Void> consume(LocalConfiguration* self,
LocalConfigurationImpl* impl,
Reference<AsyncVar<ServerDBInfo> const> serverDBInfo) {
wait(impl->initFuture);
state Reference<AsyncVar<ConfigFollowerInterface>> broadcaster =
makeReference<AsyncVar<ConfigFollowerInterface>>(serverDBInfo->get().configBroadcaster);
impl->actors.add(monitorBroadcaster(serverDBInfo, broadcaster));
loop { wait(consumeLoopIteration(self, impl, broadcaster)); }
}
public:
LocalConfigurationImpl(std::string const& configPath,
std::string const& dataFolder,
std::map<Key, Value>&& manualKnobOverrides,
2021-05-01 02:01:44 +08:00
UID id)
: configKnobOverrides(configPath), manualKnobOverrides(std::move(manualKnobOverrides)) {
platform::createDirectory(dataFolder);
2021-05-01 02:01:44 +08:00
kvStore = keyValueStoreMemory(joinPath(dataFolder, "localconf-" + id.toString()), id, 500e6);
}
~LocalConfigurationImpl() { kvStore->close(); }
Future<Void> initialize() {
2021-04-25 08:22:58 +08:00
ASSERT(!initFuture.isValid());
initFuture = initialize(this);
2021-04-25 08:22:58 +08:00
return initFuture;
}
Future<Void> setSnapshot(std::map<ConfigKey, Value>&& snapshot, Version lastCompactedVersion) {
// TODO: Remove unnecessary copy
auto f = setSnapshot(this, std::move(snapshot), lastCompactedVersion);
actors.add(f);
return f;
}
Future<Void> addVersionedMutations(Standalone<VectorRef<VersionedConfigMutationRef>> versionedMutations,
Version mostRecentVersion) {
auto f = addVersionedMutations(this, versionedMutations, mostRecentVersion);
actors.add(f);
return f;
}
FlowKnobs const& getFlowKnobs() const {
ASSERT(initFuture.isReady());
return flowKnobs;
}
ClientKnobs const& getClientKnobs() const {
ASSERT(initFuture.isReady());
return clientKnobs;
}
ServerKnobs const& getServerKnobs() const {
ASSERT(initFuture.isReady());
return serverKnobs;
}
TestKnobs const& getTestKnobs() const {
2021-04-25 08:22:58 +08:00
ASSERT(initFuture.isReady());
return testKnobs;
2021-04-25 08:22:58 +08:00
}
Future<Void> consume(LocalConfiguration& self, Reference<AsyncVar<ServerDBInfo> const> const& serverDBInfo) {
return consume(&self, this, serverDBInfo);
}
};
LocalConfiguration::LocalConfiguration(std::string const& configPath,
std::string const& dataFolder,
std::map<Key, Value>&& manualKnobOverrides,
2021-05-01 02:01:44 +08:00
UID id)
: impl(std::make_unique<LocalConfigurationImpl>(configPath, dataFolder, std::move(manualKnobOverrides), id)) {}
LocalConfiguration::~LocalConfiguration() = default;
Future<Void> LocalConfiguration::initialize() {
return impl->initialize();
2021-04-25 08:22:58 +08:00
}
FlowKnobs const& LocalConfiguration::getFlowKnobs() const {
return impl->getFlowKnobs();
}
ClientKnobs const& LocalConfiguration::getClientKnobs() const {
return impl->getClientKnobs();
}
ServerKnobs const& LocalConfiguration::getServerKnobs() const {
return impl->getServerKnobs();
}
TestKnobs const& LocalConfiguration::getTestKnobs() const {
return impl->getTestKnobs();
}
Future<Void> LocalConfiguration::consume(Reference<AsyncVar<ServerDBInfo> const> const& serverDBInfo) {
return impl->consume(*this, serverDBInfo);
}
Future<Void> LocalConfiguration::setSnapshot(std::map<ConfigKey, Value>&& snapshot, Version lastCompactedVersion) {
return impl->setSnapshot(std::move(snapshot), lastCompactedVersion);
}
Future<Void> LocalConfiguration::addVersionedMutations(
Standalone<VectorRef<VersionedConfigMutationRef>> versionedMutations,
Version mostRecentVersion) {
return impl->addVersionedMutations(versionedMutations, mostRecentVersion);
2021-04-25 08:22:58 +08:00
}
#define init(knob, value) initKnob(knob, value, #knob)
2021-05-13 02:56:45 +08:00
TestKnobs::TestKnobs() {
initialize();
}
2021-04-25 08:22:58 +08:00
void TestKnobs::initialize() {
init(TEST_LONG, 0);
init(TEST_INT, 0);
init(TEST_DOUBLE, 0.0);
init(TEST_BOOL, false);
init(TEST_STRING, "");
}
void TestKnobs::reset() {
explicitlySetKnobs.clear();
initialize();
}
namespace {
class TestKnobs2 : public Knobs {
public:
int64_t TEST2_LONG;
int TEST2_INT;
double TEST2_DOUBLE;
bool TEST2_BOOL;
std::string TEST2_STRING;
void initialize() {
init(TEST2_LONG, 0);
init(TEST2_INT, 0);
init(TEST2_DOUBLE, 0.0);
init(TEST2_BOOL, false);
init(TEST2_STRING, "");
}
TestKnobs2() { initialize(); }
void reset() {
explicitlySetKnobs.clear();
initialize();
}
};
} // namespace
TEST_CASE("/fdbserver/ConfigDB/LocalConfiguration/updateSingleKnob") {
TestKnobs k1;
TestKnobs2 k2;
updateSingleKnob("test_long"_sr, "5"_sr, k1, k2);
updateSingleKnob("test_int"_sr, "5"_sr, k1, k2);
updateSingleKnob("test_double"_sr, "5.0"_sr, k1, k2);
updateSingleKnob("test_bool"_sr, "true"_sr, k1, k2);
updateSingleKnob("test_string"_sr, "5"_sr, k1, k2);
updateSingleKnob("test2_long"_sr, "10"_sr, k1, k2);
updateSingleKnob("test2_int"_sr, "10"_sr, k1, k2);
updateSingleKnob("test2_double"_sr, "10.0"_sr, k1, k2);
updateSingleKnob("test2_bool"_sr, "true"_sr, k1, k2);
updateSingleKnob("test2_string"_sr, "10"_sr, k1, k2);
ASSERT(k1.TEST_LONG == 5);
ASSERT(k1.TEST_INT == 5);
ASSERT(k1.TEST_DOUBLE == 5.0);
ASSERT(k1.TEST_BOOL);
ASSERT(k1.TEST_STRING == "5");
ASSERT(k2.TEST2_LONG == 10);
ASSERT(k2.TEST2_INT == 10);
ASSERT(k2.TEST2_DOUBLE == 10.0);
ASSERT(k2.TEST2_BOOL);
ASSERT(k2.TEST2_STRING == "10");
return Void();
}
TEST_CASE("/fdbserver/ConfigDB/LocalConfiguration/ManualKnobOverrides") {
TestKnobs k1;
TestKnobs2 k2;
std::map<Key, Value> m;
m["test_int"_sr] = "5"_sr;
m["test2_int"_sr] = "10"_sr;
ManualKnobOverrides manualKnobOverrides(std::move(m));
manualKnobOverrides.update(k1, k2);
ASSERT(k1.TEST_INT == 5);
ASSERT(k2.TEST2_INT == 10);
return Void();
}
TEST_CASE("/fdbserver/ConfigDB/LocalConfiguration/ConfigKnobOverrides") {
TestKnobs k1;
TestKnobs2 k2;
ConfigKnobOverrides configKnobOverrides("class-A/class-B");
configKnobOverrides.update(k1, k2);
ASSERT(k1.TEST_INT == 0);
ASSERT(k2.TEST2_INT == 0);
configKnobOverrides.set("class-B"_sr, "test_int"_sr, "7"_sr);
configKnobOverrides.set("class-A"_sr, "test_int"_sr, "5"_sr);
configKnobOverrides.set("class-A"_sr, "test2_int"_sr, "10"_sr);
configKnobOverrides.update(k1, k2);
ASSERT(k1.TEST_INT == 7);
ASSERT(k2.TEST2_INT == 10);
return Void();
}
namespace {
ACTOR Future<Void> setTestSnapshot(LocalConfiguration* localConfiguration, Version* version) {
std::map<ConfigKey, Value> snapshot = {
{ ConfigKeyRef("class-A"_sr, "test_int"_sr), "1"_sr },
{ ConfigKeyRef("class-B"_sr, "test_int"_sr), "2"_sr },
{ ConfigKeyRef("class-C"_sr, "test_int"_sr), "3"_sr },
{ ConfigKeyRef("class-A"_sr, "test_string"_sr), "x"_sr },
};
wait(localConfiguration->setSnapshot(std::move(snapshot), ++(*version)));
return Void();
}
void appendVersionedMutation(Standalone<VectorRef<VersionedConfigMutationRef>>& versionedMutations,
Version version,
KeyRef configClass,
KeyRef knobName,
ValueRef knobValue) {
Tuple tuple;
tuple << configClass;
tuple << knobName;
auto mutation = ConfigMutationRef::createConfigMutation(tuple.pack(), knobValue);
versionedMutations.emplace_back_deep(versionedMutations.arena(), version, mutation);
}
ACTOR Future<Void> addTestUpdates(LocalConfiguration* localConfiguration, Version* version) {
Standalone<VectorRef<VersionedConfigMutationRef>> versionedMutations;
++(*version);
appendVersionedMutation(versionedMutations, *version, "class-A"_sr, "test_bool"_sr, "true"_sr);
appendVersionedMutation(versionedMutations, *version, "class-B"_sr, "test_long"_sr, "100"_sr);
appendVersionedMutation(versionedMutations, *version, "class-C"_sr, "test_double"_sr, "1.0"_sr);
appendVersionedMutation(versionedMutations, *version, "class-A"_sr, "test_int"_sr, "10"_sr);
wait(localConfiguration->addVersionedMutations(versionedMutations, *version));
return Void();
}
ACTOR Future<Void> runTestUpdates(LocalConfiguration* localConfiguration, Version* version) {
wait(localConfiguration->initialize());
wait(setTestSnapshot(localConfiguration, version));
wait(addTestUpdates(localConfiguration, version));
// TODO: Clean up on-disk state
return Void();
}
ACTOR Future<Void> runFirstLocalConfiguration(std::string configPath, UID uid) {
state LocalConfiguration localConfiguration(configPath, "./", {}, uid);
state Version version = 1;
wait(runTestUpdates(&localConfiguration, &version));
ASSERT(localConfiguration.getTestKnobs().TEST_INT == 2);
ASSERT(localConfiguration.getTestKnobs().TEST_BOOL);
ASSERT(localConfiguration.getTestKnobs().TEST_STRING == "x");
return Void();
}
ACTOR template <class F>
Future<Void> runSecondLocalConfiguration(std::string configPath, UID uid, F validate) {
state LocalConfiguration localConfiguration(configPath, "./", {}, uid);
wait(localConfiguration.initialize());
validate(localConfiguration.getTestKnobs());
return Void();
}
} // namespace
TEST_CASE("/fdbserver/ConfigDB/LocalConfiguration/Simple") {
wait(runFirstLocalConfiguration("class-A/class-B", deterministicRandom()->randomUniqueID()));
return Void();
}
TEST_CASE("/fdbserver/ConfigDB/LocalConfiguration/Restart") {
state UID uid = deterministicRandom()->randomUniqueID();
wait(runFirstLocalConfiguration("class-A/class-B", uid));
wait(runSecondLocalConfiguration("class-A/class-B", uid, [](TestKnobs const& testKnobs) {
ASSERT(testKnobs.TEST_INT == 2);
ASSERT(testKnobs.TEST_BOOL);
ASSERT(testKnobs.TEST_STRING == "x");
ASSERT(testKnobs.TEST_DOUBLE == 0.0);
ASSERT(testKnobs.TEST_LONG == 100);
}));
return Void();
}
TEST_CASE("/fdbserver/ConfigDB/LocalConfiguration/FreshRestart") {
state UID uid = deterministicRandom()->randomUniqueID();
wait(runFirstLocalConfiguration("class-A/class-B", uid));
wait(runSecondLocalConfiguration("class-B/class-A", uid, [](TestKnobs const& testKnobs) {
ASSERT(testKnobs.TEST_INT == 0);
ASSERT(!testKnobs.TEST_BOOL);
ASSERT(testKnobs.TEST_STRING == "");
ASSERT(testKnobs.TEST_DOUBLE == 0.0);
ASSERT(testKnobs.TEST_LONG == 0);
}));
return Void();
}