foundationdb/fdbserver/LocalConfiguration.actor.cpp

495 lines
18 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.
*/
2021-06-03 14:40:52 +08:00
#include "fdbclient/IKnobCollection.h"
#include "fdbrpc/Stats.h"
#include "fdbserver/ConfigBroadcastFollowerInterface.h"
2021-04-25 08:22:58 +08:00
#include "fdbserver/IKeyValueStore.h"
#include "fdbserver/LocalConfiguration.h"
#include "fdbserver/OnDemandStore.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
KeyRef stringToKeyRef(std::string const& s) {
return StringRef(reinterpret_cast<uint8_t const*>(s.c_str()), s.size());
}
class ConfigKnobOverrides {
Standalone<VectorRef<KeyRef>> configPath;
std::map<Optional<Key>, std::map<Key, KnobValue>> configClassToKnobToValue;
public:
ConfigKnobOverrides() = default;
2021-05-13 02:56:45 +08:00
explicit ConfigKnobOverrides(std::string const& paramString) {
configClassToKnobToValue[{}] = {};
2021-05-21 12:51:54 +08:00
if (std::all_of(paramString.begin(), paramString.end(), [](char c) {
return isalpha(c) || isdigit(c) || c == '/' || c == '-';
})) {
StringRef s = stringToKeyRef(paramString);
while (s.size()) {
configPath.push_back_deep(configPath.arena(), s.eat("/"_sr));
configClassToKnobToValue[configPath.back()] = {};
}
} else {
fprintf(stderr, "WARNING: Invalid configuration path: `%s'\n", paramString.c_str());
}
}
ConfigClassSet getConfigClassSet() const { return ConfigClassSet(configPath); }
void set(Optional<KeyRef> configClass, KeyRef knobName, KnobValueRef value) {
configClassToKnobToValue[configClass.castTo<Key>()][knobName] = value;
}
void remove(Optional<KeyRef> configClass, KeyRef knobName) {
configClassToKnobToValue[configClass.castTo<Key>()].erase(knobName);
}
2021-06-03 14:40:52 +08:00
void update(IKnobCollection& knobCollection) const {
// Apply global overrides
const auto& knobToValue = configClassToKnobToValue.at({});
for (const auto& [knobName, knobValue] : knobToValue) {
2021-06-03 14:40:52 +08:00
knobCollection.setKnob(knobName.toString(), knobValue);
}
// Apply specific overrides
for (const auto& configClass : configPath) {
const auto& knobToValue = configClassToKnobToValue.at(configClass);
for (const auto& [knobName, knobValue] : knobToValue) {
2021-06-03 14:40:52 +08:00
knobCollection.setKnob(knobName.toString(), knobValue);
}
}
}
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, KnobValue> overrides;
public:
explicit ManualKnobOverrides(std::map<std::string, std::string> const& overrides) {
for (const auto& [knobName, knobValueString] : overrides) {
2021-06-03 14:40:52 +08:00
try {
2021-06-10 11:50:00 +08:00
auto knobValue =
IKnobCollection::parseKnobValue(knobName, knobValueString, IKnobCollection::Type::SERVER);
2021-06-03 14:40:52 +08:00
this->overrides[stringToKeyRef(knobName)] = knobValue;
} catch (Error& e) {
if (e.code() == error_code_invalid_option) {
fprintf(stderr, "WARNING: Unrecognized knob option '%s'\n", knobName.c_str());
TraceEvent(SevWarnAlways, "UnrecognizedKnobOption").detail("Knob", printable(knobName));
} else {
throw e;
}
}
}
}
2021-06-03 14:40:52 +08:00
void update(IKnobCollection& knobCollection) {
for (const auto& [knobName, knobValue] : overrides) {
2021-06-03 14:40:52 +08:00
knobCollection.setKnob(knobName.toString(), knobValue);
}
}
};
2021-04-25 08:22:58 +08:00
} // namespace
class LocalConfigurationImpl {
UID id;
OnDemandStore kvStore;
2021-04-25 08:22:58 +08:00
Future<Void> initFuture;
Version lastSeenVersion{ 0 };
ManualKnobOverrides manualKnobOverrides;
ConfigKnobOverrides configKnobOverrides;
2021-06-03 14:40:52 +08:00
std::unique_ptr<IKnobCollection> testKnobCollection;
IKnobCollection& getKnobs() {
return testKnobCollection ? *testKnobCollection : *g_knobs;
}
IKnobCollection const& getKnobs() const {
return testKnobCollection ? *testKnobCollection : *g_knobs;
}
2021-05-14 07:08:02 +08:00
CounterCollection cc;
Counter broadcasterChanges;
Counter snapshots;
Counter changeRequestsFetched;
Counter mutations;
Future<Void> logger;
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();
}
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) {
state Version lastSeenVersion = wait(getLastSeenVersion(self));
state Optional<Value> storedConfigPathValue = wait(self->kvStore->readValue(configPathKey));
if (!storedConfigPathValue.present()) {
wait(saveConfigPath(self));
self->updateInMemoryState(lastSeenVersion);
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->updateInMemoryState(lastSeenVersion);
2021-04-25 08:22:58 +08:00
return Void();
}
Standalone<RangeResultRef> range = wait(self->kvStore->readRange(knobOverrideKeys));
for (const auto& kv : range) {
auto configKey =
BinaryReader::fromStringRef<ConfigKey>(kv.key.removePrefix(knobOverrideKeys.begin), IncludeVersion());
self->configKnobOverrides.set(configKey.configClass,
configKey.knobName,
ObjectReader::fromStringRef<KnobValue>(kv.value, IncludeVersion()));
2021-04-25 08:22:58 +08:00
}
self->updateInMemoryState(lastSeenVersion);
2021-04-25 08:22:58 +08:00
return Void();
}
void updateInMemoryState(Version lastSeenVersion) {
this->lastSeenVersion = lastSeenVersion;
2021-06-10 11:50:00 +08:00
// TODO: Support randomization?
getKnobs().reset(Randomize::NO, g_network->isSimulated() ? IsSimulated::YES : IsSimulated::NO);
configKnobOverrides.update(getKnobs());
manualKnobOverrides.update(getKnobs());
// Must reinitialize in order to update dependent knobs
2021-06-10 11:50:00 +08:00
getKnobs().initialize(Randomize::NO, g_network->isSimulated() ? IsSimulated::YES : IsSimulated::NO);
}
ACTOR static Future<Void> setSnapshot(LocalConfigurationImpl* self,
std::map<ConfigKey, KnobValue> snapshot,
Version snapshotVersion) {
// TODO: Concurrency control?
ASSERT(self->initFuture.isValid() && self->initFuture.isReady());
2021-05-14 07:08:02 +08:00
++self->snapshots;
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),
ObjectWriter::toValue(knobValue, IncludeVersion())));
}
ASSERT_GE(snapshotVersion, self->lastSeenVersion);
self->kvStore->set(KeyValueRef(lastSeenVersionKey, BinaryWriter::toValue(snapshotVersion, IncludeVersion())));
wait(self->kvStore->commit());
self->updateInMemoryState(snapshotVersion);
return Void();
}
ACTOR static Future<Void> addChanges(LocalConfigurationImpl* self,
Standalone<VectorRef<VersionedConfigMutationRef>> changes,
Version mostRecentVersion) {
// TODO: Concurrency control?
ASSERT(self->initFuture.isValid() && self->initFuture.isReady());
2021-05-14 07:08:02 +08:00
++self->changeRequestsFetched;
for (const auto& versionedMutation : changes) {
2021-05-14 07:08:02 +08:00
++self->mutations;
const auto& mutation = versionedMutation.mutation;
auto serializedKey = BinaryWriter::toValue(mutation.getKey(), IncludeVersion());
if (mutation.isSet()) {
self->kvStore->set(KeyValueRef(serializedKey.withPrefix(knobOverrideKeys.begin),
ObjectWriter::toValue(mutation.getValue(), IncludeVersion())));
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->updateInMemoryState(mostRecentVersion);
return Void();
}
ACTOR static Future<Void> consumeInternal(LocalConfigurationImpl* self,
ConfigBroadcastFollowerInterface broadcaster) {
loop {
try {
state ConfigBroadcastFollowerGetChangesReply changesReply =
wait(broadcaster.getChanges.getReply(ConfigBroadcastFollowerGetChangesRequest{
self->lastSeenVersion, self->configKnobOverrides.getConfigClassSet() }));
TraceEvent(SevDebug, "LocalConfigGotChanges", self->id)
.detail("Size", changesReply.changes.size())
.detail("Version", changesReply.mostRecentVersion);
wait(self->addChanges(changesReply.changes, changesReply.mostRecentVersion));
} catch (Error& e) {
if (e.code() == error_code_version_already_compacted) {
state ConfigBroadcastFollowerGetSnapshotReply snapshotReply = wait(broadcaster.getSnapshot.getReply(
ConfigBroadcastFollowerGetSnapshotRequest{ self->configKnobOverrides.getConfigClassSet() }));
ASSERT_GT(snapshotReply.version, self->lastSeenVersion);
++self->snapshots;
wait(setSnapshot(self, std::move(snapshotReply.snapshot), snapshotReply.version));
} else {
throw e;
}
}
wait(yield()); // Necessary to not immediately trigger retry?
}
}
ACTOR static Future<Void> consume(
LocalConfigurationImpl* self,
Reference<IDependentAsyncVar<ConfigBroadcastFollowerInterface> const> broadcaster) {
ASSERT(self->initFuture.isValid() && self->initFuture.isReady());
loop {
choose {
when(wait(brokenPromiseToNever(consumeInternal(self, broadcaster->get())))) { ASSERT(false); }
when(wait(broadcaster->onChange())) { ++self->broadcasterChanges; }
when(wait(self->kvStore->getError())) { ASSERT(false); }
}
}
}
public:
LocalConfigurationImpl(std::string const& dataFolder,
std::string const& configPath,
std::map<std::string, std::string> const& manualKnobOverrides,
2021-06-10 11:50:00 +08:00
IsTest isTest)
: id(deterministicRandom()->randomUniqueID()), kvStore(dataFolder, id, "localconf-"), cc("LocalConfiguration"),
broadcasterChanges("BroadcasterChanges", cc), snapshots("Snapshots", cc),
2021-05-14 07:08:02 +08:00
changeRequestsFetched("ChangeRequestsFetched", cc), mutations("Mutations", cc), configKnobOverrides(configPath),
manualKnobOverrides(manualKnobOverrides) {
2021-06-10 11:50:00 +08:00
if (isTest == IsTest::YES) {
testKnobCollection = IKnobCollection::create(IKnobCollection::Type::TEST,
Randomize::NO,
g_network->isSimulated() ? IsSimulated::YES : IsSimulated::NO);
}
logger = traceCounters(
"LocalConfigurationMetrics", id, SERVER_KNOBS->WORKER_LOGGING_INTERVAL, &cc, "LocalConfigurationMetrics");
}
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> addChanges(Standalone<VectorRef<VersionedConfigMutationRef>> changes, Version mostRecentVersion) {
return addChanges(this, changes, mostRecentVersion);
}
FlowKnobs const& getFlowKnobs() const {
ASSERT(initFuture.isValid() && initFuture.isReady());
return getKnobs().getFlowKnobs();
}
ClientKnobs const& getClientKnobs() const {
ASSERT(initFuture.isValid() && initFuture.isReady());
return getKnobs().getClientKnobs();
}
ServerKnobs const& getServerKnobs() const {
ASSERT(initFuture.isValid() && initFuture.isReady());
return getKnobs().getServerKnobs();
}
TestKnobs const& getTestKnobs() const {
ASSERT(initFuture.isValid() && initFuture.isReady());
return getKnobs().getTestKnobs();
2021-04-25 08:22:58 +08:00
}
Future<Void> consume(Reference<IDependentAsyncVar<ConfigBroadcastFollowerInterface> const> const& broadcaster) {
return consume(this, broadcaster);
}
UID getID() const { return id; }
};
LocalConfiguration::LocalConfiguration(std::string const& dataFolder,
std::string const& configPath,
std::map<std::string, std::string> const& manualKnobOverrides,
2021-06-10 11:50:00 +08:00
IsTest isTest)
: impl(std::make_unique<LocalConfigurationImpl>(dataFolder, configPath, manualKnobOverrides, isTest)) {}
LocalConfiguration::LocalConfiguration(LocalConfiguration&&) = default;
LocalConfiguration& LocalConfiguration::operator=(LocalConfiguration&&) = default;
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();
}
2021-05-13 15:51:19 +08:00
Future<Void> LocalConfiguration::consume(
Reference<IDependentAsyncVar<ConfigBroadcastFollowerInterface> const> const& broadcaster) {
return impl->consume(broadcaster);
}
Future<Void> LocalConfiguration::addChanges(Standalone<VectorRef<VersionedConfigMutationRef>> changes,
Version mostRecentVersion) {
return impl->addChanges(changes, mostRecentVersion);
2021-04-25 08:22:58 +08:00
}
UID LocalConfiguration::getID() const {
return impl->getID();
}
/*
namespace {
// TODO: These tests should be moved to KnobCollection.cpp
#define init(knob, value) initKnob(knob, value, #knob)
class TestKnobs2 : public KnobsImpl<TestKnobs2> {
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(); }
};
} // namespace
2021-05-14 02:22:25 +08:00
TEST_CASE("/fdbserver/ConfigDB/LocalConfiguration/Internal/updateSingleKnob") {
TestKnobs k1;
TestKnobs2 k2;
updateSingleKnob("test_long"_sr, KnobValueRef::create(int64_t{5}), k1, k2);
updateSingleKnob("test_int"_sr, KnobValueRef::create(int{5}), k1, k2);
updateSingleKnob("test_double"_sr, KnobValueRef::create(double{5.0}), k1, k2);
updateSingleKnob("test_bool"_sr, KnobValueRef::create(true), k1, k2);
updateSingleKnob("test_string"_sr, KnobValueRef::create("5"), k1, k2);
updateSingleKnob("test2_long"_sr, KnobValueRef::create(int64_t{10}), k1, k2);
updateSingleKnob("test2_int"_sr, KnobValueRef::create(int{10}), k1, k2);
updateSingleKnob("test2_double"_sr, KnobValueRef::create(double{10.0}), k1, k2);
updateSingleKnob("test2_bool"_sr, KnobValueRef::create(true), k1, k2);
updateSingleKnob("test2_string"_sr, KnobValueRef::create("10"), k1, k2);
ASSERT_EQ(k1.TEST_LONG, 5);
ASSERT_EQ(k1.TEST_INT, 5);
ASSERT_EQ(k1.TEST_DOUBLE, 5.0);
ASSERT(k1.TEST_BOOL);
ASSERT(k1.TEST_STRING == "5");
ASSERT_EQ(k2.TEST2_LONG, 10);
ASSERT_EQ(k2.TEST2_INT, 10);
ASSERT_EQ(k2.TEST2_DOUBLE, 10.0);
ASSERT(k2.TEST2_BOOL);
ASSERT(k2.TEST2_STRING == "10");
return Void();
}
2021-05-14 02:22:25 +08:00
TEST_CASE("/fdbserver/ConfigDB/LocalConfiguration/Internal/ManualKnobOverrides") {
TestKnobs k1;
TestKnobs2 k2;
std::map<std::string, std::string> m = { { "test_int", "5" }, { "test2_int", "10" } };
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/Internal/GlobalKnobOverride") {
TestKnobs k1;
ConfigKnobOverrides configKnobOverrides("class-A");
configKnobOverrides.set({}, "test_int"_sr, KnobValueRef::create(int{5}));
configKnobOverrides.update(k1);
ASSERT_EQ(k1.TEST_INT, 5);
return Void();
}
2021-05-14 02:22:25 +08:00
TEST_CASE("/fdbserver/ConfigDB/LocalConfiguration/Internal/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, KnobValue::create(int{7}));
configKnobOverrides.set("class-A"_sr, "test_int"_sr, KnobValue::create(int{5}));
configKnobOverrides.set("class-A"_sr, "test2_int"_sr, KnobValue::create(int{10}));
configKnobOverrides.update(k1, k2);
ASSERT_EQ(k1.TEST_INT, 7);
ASSERT_EQ(k2.TEST2_INT, 10);
return Void();
}
TEST_CASE("/fdbserver/ConfigDB/LocalConfiguration/Internal/InvalidKnobName") {
TestKnobs k1;
ConfigKnobOverrides configKnobOverrides("class-A");
// Noop with a SevWarnAlways trace
configKnobOverrides.set("class-A", "thisknobdoesnotexist"_sr, KnobValueRef::create(int{5}));
configKnobOverrides.update(k1);
return Void();
}
*/