foundationdb/fdbserver/LocalConfiguration.actor.cpp

510 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.
*/
#include "fdbclient/Knobs.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...);
}
}
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, Value>> configClassToKnobToValue;
public:
ConfigKnobOverrides() = default;
2021-05-13 02:56:45 +08:00
explicit ConfigKnobOverrides(std::string const& paramString) {
2021-05-19 09:32:56 +08:00
ASSERT(std::all_of(
paramString.begin(), paramString.end(), [](char c) { return isalpha(c) || c == '/' || c == '-'; }));
StringRef s = stringToKeyRef(paramString);
2021-05-13 02:56:45 +08:00
while (s.size()) {
configPath.push_back_deep(configPath.arena(), s.eat("/"_sr));
configClassToKnobToValue[configPath.back()] = {};
}
configClassToKnobToValue[{}] = {};
}
ConfigClassSet getConfigClassSet() const { return ConfigClassSet(configPath); }
void set(Optional<KeyRef> configClass, KeyRef knobName, ValueRef value) {
configClassToKnobToValue[configClass.castTo<Key>()][knobName] = value;
}
void remove(Optional<KeyRef> configClass, KeyRef knobName) {
configClassToKnobToValue[configClass.castTo<Key>()].erase(knobName);
}
template <class... KS>
void update(KS&... knobCollections) const {
for (const auto& configClass : configPath) {
const auto& knobToValue = configClassToKnobToValue.at(configClass);
for (const auto& [knobName, knobValue] : knobToValue) {
2021-05-13 02:56:45 +08:00
// Assert here because we should be validating on the client
ASSERT(updateSingleKnob(knobName, knobValue, knobCollections...));
}
}
// TODO: Test this
const auto& knobToValue = configClassToKnobToValue.at({});
for (const auto& [knobName, knobValue] : knobToValue) {
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:
explicit ManualKnobOverrides(std::map<std::string, std::string> const& overrides) {
for (const auto& [knobName, knobValue] : overrides) {
this->overrides[stringToKeyRef(knobName)] = stringToKeyRef(knobValue);
}
}
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));
}
}
}
};
ACTOR template <class F>
Future<Void> forever(F f) {
loop { wait(f()); }
}
2021-04-25 08:22:58 +08:00
} // namespace
class LocalConfigurationImpl : public NonCopyable {
2021-05-14 07:08:02 +08:00
IKeyValueStore* kvStore{ nullptr };
2021-04-25 08:22:58 +08:00
Future<Void> initFuture;
FlowKnobs flowKnobs;
ClientKnobs clientKnobs;
ServerKnobs serverKnobs;
TestKnobs testKnobs;
Version lastSeenVersion{ 0 };
ManualKnobOverrides manualKnobOverrides;
ConfigKnobOverrides configKnobOverrides;
ActorCollection actors{ false };
2021-05-14 07:08:02 +08:00
CounterCollection cc;
Counter broadcasterChanges;
Counter snapshots;
Counter changeRequestsFetched;
Counter mutations;
Future<Void> logger;
UID id;
2021-05-14 07:08:02 +08:00
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;
}
2021-05-14 07:08:02 +08:00
ACTOR static Future<Void> initialize(LocalConfigurationImpl* self, std::string dataFolder, UID id) {
platform::createDirectory(dataFolder);
self->id = id;
2021-05-14 07:08:02 +08:00
self->kvStore = keyValueStoreMemory(joinPath(dataFolder, "localconf-" + id.toString()), id, 500e6);
self->logger = traceCounters("LocalConfigurationMetrics",
id,
SERVER_KNOBS->WORKER_LOGGING_INTERVAL,
&self->cc,
"LocalConfigurationMetrics");
2021-04-25 08:22:58 +08:00
wait(self->kvStore->init());
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));
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->updateInMemoryState(lastSeenVersion);
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();
}
2021-05-15 14:02:40 +08:00
void resetKnobs(bool randomize = false, bool isSimulated = false) {
flowKnobs.reset(randomize, isSimulated);
clientKnobs.reset(randomize);
serverKnobs.reset(randomize, &clientKnobs, isSimulated);
testKnobs.reset();
}
void updateInMemoryState(Version lastSeenVersion) {
this->lastSeenVersion = lastSeenVersion;
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 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), knobValue));
}
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> addVersionedMutations(
LocalConfigurationImpl* self,
Standalone<VectorRef<VersionedConfigMutationRef>> versionedMutations,
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 : versionedMutations) {
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), mutation.getValue().get()));
self->configKnobOverrides.set(
mutation.getConfigClass(), mutation.getKnobName(), mutation.getValue().get());
} 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();
}
2021-05-13 15:51:19 +08:00
ACTOR static Future<Void> consumeLoopIteration(
LocalConfiguration* self,
LocalConfigurationImpl* impl,
Reference<IDependentAsyncVar<ConfigFollowerInterface> const> broadcaster) {
state SimpleConfigConsumer consumer(broadcaster->get(),
impl->configKnobOverrides.getConfigClassSet(),
impl->lastSeenVersion,
0.5,
Optional<double>{});
TraceEvent(SevDebug, "LocalConfigurationStartingConsumer", impl->id)
.detail("Consumer", consumer.getID())
.detail("Broadcaster", broadcaster->get().id());
choose {
2021-05-14 07:08:02 +08:00
when(wait(broadcaster->onChange())) { ++impl->broadcasterChanges; }
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,
2021-05-13 15:51:19 +08:00
Reference<IDependentAsyncVar<ConfigFollowerInterface> const> broadcaster) {
ASSERT(impl->initFuture.isValid() && impl->initFuture.isReady());
loop { wait(consumeLoopIteration(self, impl, broadcaster)); }
}
public:
LocalConfigurationImpl(std::string const& configPath, std::map<std::string, std::string> const& manualKnobOverrides)
2021-05-14 07:08:02 +08:00
: cc("LocalConfiguration"), broadcasterChanges("BroadcasterChanges", cc), snapshots("Snapshots", cc),
changeRequestsFetched("ChangeRequestsFetched", cc), mutations("Mutations", cc), configKnobOverrides(configPath),
manualKnobOverrides(manualKnobOverrides) {}
2021-05-14 07:08:02 +08:00
~LocalConfigurationImpl() {
if (kvStore) {
kvStore->close();
}
}
2021-05-14 07:08:02 +08:00
Future<Void> initialize(std::string const& dataFolder, UID id) {
2021-04-25 08:22:58 +08:00
ASSERT(!initFuture.isValid());
2021-05-14 07:08:02 +08:00
initFuture = initialize(this, dataFolder, id);
2021-04-25 08:22:58 +08:00
return initFuture;
}
2021-05-13 15:51:19 +08:00
Future<Void> setSnapshot(std::map<ConfigKey, Value> const& snapshot, Version lastCompactedVersion) {
2021-05-14 02:22:25 +08:00
return setSnapshot(this, snapshot, lastCompactedVersion);
}
Future<Void> addVersionedMutations(Standalone<VectorRef<VersionedConfigMutationRef>> versionedMutations,
Version mostRecentVersion) {
2021-05-14 02:22:25 +08:00
return addVersionedMutations(this, versionedMutations, mostRecentVersion);
}
FlowKnobs const& getFlowKnobs() const {
ASSERT(initFuture.isValid() && initFuture.isReady());
return flowKnobs;
}
ClientKnobs const& getClientKnobs() const {
ASSERT(initFuture.isValid() && initFuture.isReady());
return clientKnobs;
}
ServerKnobs const& getServerKnobs() const {
ASSERT(initFuture.isValid() && initFuture.isReady());
return serverKnobs;
}
TestKnobs const& getTestKnobs() const {
ASSERT(initFuture.isValid() && initFuture.isReady());
return testKnobs;
2021-04-25 08:22:58 +08:00
}
2021-05-13 15:51:19 +08:00
Future<Void> consume(LocalConfiguration& self,
Reference<IDependentAsyncVar<ConfigFollowerInterface> const> const& broadcaster) {
return consume(&self, this, broadcaster);
}
UID getID() const { return id; }
};
LocalConfiguration::LocalConfiguration(std::string const& configPath,
std::map<std::string, std::string> const& manualKnobOverrides)
2021-05-14 07:08:02 +08:00
: impl(std::make_unique<LocalConfigurationImpl>(configPath, manualKnobOverrides)) {}
LocalConfiguration::LocalConfiguration(LocalConfiguration&&) = default;
LocalConfiguration& LocalConfiguration::operator=(LocalConfiguration&&) = default;
LocalConfiguration::~LocalConfiguration() = default;
2021-05-14 07:08:02 +08:00
Future<Void> LocalConfiguration::initialize(std::string const& dataFolder, UID id) {
return impl->initialize(dataFolder, id);
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<ConfigFollowerInterface> const> const& broadcaster) {
return impl->consume(*this, broadcaster);
}
2021-05-13 15:51:19 +08:00
Future<Void> LocalConfiguration::setSnapshot(std::map<ConfigKey, Value> const& snapshot, Version lastCompactedVersion) {
return impl->setSnapshot(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
}
UID LocalConfiguration::getID() const {
return impl->getID();
}
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, "");
}
2021-05-14 03:55:33 +08:00
bool TestKnobs::operator==(TestKnobs const& rhs) const {
return (TEST_LONG == rhs.TEST_LONG) && (TEST_INT == rhs.TEST_INT) && (TEST_DOUBLE == rhs.TEST_DOUBLE) &&
(TEST_BOOL == rhs.TEST_BOOL) && (TEST_STRING == rhs.TEST_STRING);
}
bool TestKnobs::operator!=(TestKnobs const& rhs) const {
return !(*this == rhs);
}
namespace {
2021-05-15 14:02:40 +08:00
class TestKnobs2 : public Knobs<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, "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_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();
}
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, "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();
}