2021-04-15 13:06:37 +08:00
|
|
|
/*
|
2021-04-17 08:58:00 +08:00
|
|
|
* SimpleConfigTransaction.actor.cpp
|
2021-04-15 13:06:37 +08:00
|
|
|
*
|
|
|
|
* 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 <algorithm>
|
|
|
|
|
2021-05-01 00:34:36 +08:00
|
|
|
#include "fdbclient/SimpleConfigTransaction.h"
|
2021-04-15 13:06:37 +08:00
|
|
|
#include "fdbclient/CommitTransaction.h"
|
|
|
|
#include "flow/Arena.h"
|
|
|
|
#include "flow/actorcompiler.h" // This must be the last #include.
|
|
|
|
|
2021-04-17 08:58:00 +08:00
|
|
|
class SimpleConfigTransactionImpl {
|
2021-05-12 02:12:19 +08:00
|
|
|
Standalone<VectorRef<ConfigMutationRef>> mutations;
|
2021-04-15 13:06:37 +08:00
|
|
|
Future<Version> version;
|
2021-05-15 14:02:40 +08:00
|
|
|
Key description;
|
2021-04-17 08:58:00 +08:00
|
|
|
ConfigTransactionInterface cti;
|
2021-04-23 11:43:23 +08:00
|
|
|
int numRetries{ 0 };
|
2021-05-01 00:43:18 +08:00
|
|
|
bool committed{ false };
|
2021-05-15 15:23:21 +08:00
|
|
|
Optional<UID> dID;
|
|
|
|
Promise<Void> resetPromise; // TODO: Make this a field of ISingleThreadTransaction?
|
2021-04-15 13:06:37 +08:00
|
|
|
|
2021-05-01 00:34:36 +08:00
|
|
|
ACTOR static Future<Version> getReadVersion(SimpleConfigTransactionImpl* self) {
|
2021-05-15 15:23:21 +08:00
|
|
|
if (self->dID.present()) {
|
|
|
|
TraceEvent("SimpleConfigTransactionGettingReadVersion", self->dID.get());
|
|
|
|
}
|
2021-04-17 08:58:00 +08:00
|
|
|
ConfigTransactionGetVersionRequest req;
|
|
|
|
ConfigTransactionGetVersionReply reply =
|
|
|
|
wait(self->cti.getVersion.getReply(ConfigTransactionGetVersionRequest{}));
|
2021-05-15 15:23:21 +08:00
|
|
|
if (self->dID.present()) {
|
|
|
|
TraceEvent("SimpleConfigTransactionGotReadVersion", self->dID.get()).detail("Version", reply.version);
|
|
|
|
}
|
2021-04-15 13:06:37 +08:00
|
|
|
return reply.version;
|
|
|
|
}
|
|
|
|
|
2021-04-17 08:58:00 +08:00
|
|
|
ACTOR static Future<Optional<Value>> get(SimpleConfigTransactionImpl* self, KeyRef key) {
|
2021-04-15 13:06:37 +08:00
|
|
|
if (!self->version.isValid()) {
|
2021-05-01 00:34:36 +08:00
|
|
|
self->version = getReadVersion(self);
|
2021-04-15 13:06:37 +08:00
|
|
|
}
|
|
|
|
Version version = wait(self->version);
|
2021-05-16 03:41:16 +08:00
|
|
|
auto configKey = ConfigKey::decodeKey(key);
|
|
|
|
if (self->dID.present()) {
|
|
|
|
TraceEvent("SimpleConfigTransactionGettingValue", self->dID.get())
|
|
|
|
.detail("ConfigClass", configKey.configClass)
|
|
|
|
.detail("KnobName", configKey.knobName);
|
|
|
|
}
|
2021-05-12 02:12:19 +08:00
|
|
|
ConfigTransactionGetReply result =
|
2021-05-16 03:41:16 +08:00
|
|
|
wait(self->cti.get.getReply(ConfigTransactionGetRequest(version, configKey)));
|
|
|
|
if (self->dID.present()) {
|
|
|
|
TraceEvent("SimpleConfigTransactionGotValue", self->dID.get()).detail("Value", result.value);
|
|
|
|
}
|
2021-04-15 13:06:37 +08:00
|
|
|
return result.value;
|
|
|
|
}
|
|
|
|
|
2021-04-24 02:39:26 +08:00
|
|
|
ACTOR static Future<Standalone<RangeResultRef>> getRange(SimpleConfigTransactionImpl* self, KeyRangeRef keys) {
|
2021-05-12 02:12:19 +08:00
|
|
|
// TODO: Implement
|
|
|
|
wait(delay(0));
|
|
|
|
return Standalone<RangeResultRef>{};
|
|
|
|
/*
|
2021-04-24 02:39:26 +08:00
|
|
|
if (!self->version.isValid()) {
|
2021-05-12 02:12:19 +08:00
|
|
|
self->version = getReadVersion(self);
|
2021-04-24 02:39:26 +08:00
|
|
|
}
|
|
|
|
Version version = wait(self->version);
|
|
|
|
ConfigTransactionGetRangeReply result =
|
|
|
|
wait(self->cti.getRange.getReply(ConfigTransactionGetRangeRequest(version, keys)));
|
|
|
|
return result.range;
|
2021-05-12 02:12:19 +08:00
|
|
|
*/
|
2021-04-24 02:39:26 +08:00
|
|
|
}
|
|
|
|
|
2021-04-17 08:58:00 +08:00
|
|
|
ACTOR static Future<Void> commit(SimpleConfigTransactionImpl* self) {
|
2021-04-15 13:06:37 +08:00
|
|
|
if (!self->version.isValid()) {
|
2021-05-01 00:34:36 +08:00
|
|
|
self->version = getReadVersion(self);
|
2021-04-15 13:06:37 +08:00
|
|
|
}
|
|
|
|
Version version = wait(self->version);
|
2021-05-12 02:12:19 +08:00
|
|
|
auto commitTime = now();
|
|
|
|
for (auto& mutation : self->mutations) {
|
|
|
|
mutation.setTimestamp(commitTime);
|
2021-05-15 14:02:40 +08:00
|
|
|
mutation.setDescription(self->description);
|
2021-05-12 02:12:19 +08:00
|
|
|
}
|
2021-04-17 08:58:00 +08:00
|
|
|
wait(self->cti.commit.getReply(ConfigTransactionCommitRequest(version, self->mutations)));
|
2021-05-01 00:43:18 +08:00
|
|
|
self->committed = true;
|
2021-04-15 13:06:37 +08:00
|
|
|
return Void();
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
2021-04-17 08:58:00 +08:00
|
|
|
SimpleConfigTransactionImpl(ClusterConnectionString const& ccs) {
|
2021-04-15 13:06:37 +08:00
|
|
|
auto coordinators = ccs.coordinators();
|
|
|
|
std::sort(coordinators.begin(), coordinators.end());
|
2021-04-17 08:58:00 +08:00
|
|
|
cti = ConfigTransactionInterface(coordinators[0]);
|
2021-04-15 13:06:37 +08:00
|
|
|
}
|
|
|
|
|
2021-05-15 14:02:40 +08:00
|
|
|
SimpleConfigTransactionImpl(ConfigTransactionInterface const& cti) : cti(cti) {}
|
|
|
|
|
2021-04-16 03:44:45 +08:00
|
|
|
void set(KeyRef key, ValueRef value) {
|
2021-05-15 14:02:40 +08:00
|
|
|
if (key == "\xff\xff/description"_sr) {
|
|
|
|
description = value;
|
|
|
|
}
|
2021-05-13 08:23:32 +08:00
|
|
|
mutations.push_back_deep(mutations.arena(), ConfigMutationRef::createConfigMutation(key, value));
|
2021-04-16 03:44:45 +08:00
|
|
|
}
|
2021-04-15 13:06:37 +08:00
|
|
|
|
2021-04-25 04:37:15 +08:00
|
|
|
void clear(KeyRef key) {
|
2021-05-13 08:23:32 +08:00
|
|
|
mutations.emplace_back_deep(mutations.arena(), ConfigMutationRef::createConfigMutation(key, {}));
|
2021-04-15 13:06:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
Future<Optional<Value>> get(KeyRef key) { return get(this, key); }
|
|
|
|
|
2021-04-24 02:39:26 +08:00
|
|
|
Future<Standalone<RangeResultRef>> getRange(KeyRangeRef keys) { return getRange(this, keys); }
|
|
|
|
|
2021-04-15 13:06:37 +08:00
|
|
|
Future<Void> commit() { return commit(this); }
|
|
|
|
|
2021-04-23 11:43:23 +08:00
|
|
|
Future<Void> onError(Error const& e) {
|
|
|
|
// TODO: Improve this:
|
|
|
|
if (e.code() == error_code_transaction_too_old) {
|
|
|
|
reset();
|
|
|
|
return delay((1 << numRetries++) * 0.01 * deterministicRandom()->random01());
|
|
|
|
}
|
|
|
|
throw e;
|
|
|
|
}
|
|
|
|
|
2021-05-01 00:34:36 +08:00
|
|
|
Future<Version> getReadVersion() {
|
2021-04-23 11:43:23 +08:00
|
|
|
if (!version.isValid())
|
2021-05-01 00:34:36 +08:00
|
|
|
version = getReadVersion(this);
|
2021-04-23 11:43:23 +08:00
|
|
|
return version;
|
|
|
|
}
|
2021-04-16 03:44:45 +08:00
|
|
|
|
2021-05-01 00:55:38 +08:00
|
|
|
Optional<Version> getCachedReadVersion() {
|
|
|
|
if (version.isValid() && version.isReady() && !version.isError()) {
|
|
|
|
return version.get();
|
|
|
|
} else {
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-01 00:43:18 +08:00
|
|
|
Version getCommittedVersion() const { return committed ? version.get() : ::invalidVersion; }
|
|
|
|
|
2021-04-16 03:44:45 +08:00
|
|
|
void reset() {
|
2021-04-23 11:43:23 +08:00
|
|
|
version = Future<Version>{};
|
2021-05-12 02:12:19 +08:00
|
|
|
mutations = Standalone<VectorRef<ConfigMutationRef>>{};
|
2021-05-16 03:41:16 +08:00
|
|
|
committed = false;
|
2021-04-16 03:44:45 +08:00
|
|
|
}
|
2021-04-23 11:43:23 +08:00
|
|
|
|
|
|
|
void fullReset() {
|
|
|
|
numRetries = 0;
|
2021-05-16 03:41:16 +08:00
|
|
|
dID = {};
|
2021-04-23 11:43:23 +08:00
|
|
|
reset();
|
|
|
|
}
|
2021-04-15 13:06:37 +08:00
|
|
|
|
2021-05-15 15:23:21 +08:00
|
|
|
size_t getApproximateSize() const { return mutations.expectedSize(); }
|
|
|
|
|
2021-05-16 03:41:16 +08:00
|
|
|
void debugTransaction(UID dID) {
|
|
|
|
printf("HERE_ImplSetDebugTransaction\n");
|
|
|
|
this->dID = dID;
|
|
|
|
}
|
2021-05-14 07:39:58 +08:00
|
|
|
|
2021-05-01 00:34:36 +08:00
|
|
|
}; // SimpleConfigTransactionImpl
|
|
|
|
|
|
|
|
Future<Version> SimpleConfigTransaction::getReadVersion() {
|
|
|
|
return impl->getReadVersion();
|
|
|
|
}
|
|
|
|
|
2021-05-15 15:23:21 +08:00
|
|
|
Optional<Version> SimpleConfigTransaction::getCachedReadVersion() const {
|
2021-05-01 00:55:38 +08:00
|
|
|
return impl->getCachedReadVersion();
|
2021-05-01 00:34:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
Future<Optional<Value>> SimpleConfigTransaction::get(Key const& key, bool snapshot) {
|
|
|
|
return impl->get(key);
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<Standalone<RangeResultRef>> SimpleConfigTransaction::getRange(KeySelector const& begin,
|
|
|
|
KeySelector const& end,
|
|
|
|
int limit,
|
|
|
|
bool snapshot,
|
|
|
|
bool reverse) {
|
|
|
|
return impl->getRange(KeyRangeRef(begin.getKey(), end.getKey()));
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<Standalone<RangeResultRef>> SimpleConfigTransaction::getRange(KeySelector begin,
|
|
|
|
KeySelector end,
|
|
|
|
GetRangeLimits limits,
|
|
|
|
bool snapshot,
|
|
|
|
bool reverse) {
|
|
|
|
return impl->getRange(KeyRangeRef(begin.getKey(), end.getKey()));
|
|
|
|
}
|
|
|
|
|
|
|
|
void SimpleConfigTransaction::set(KeyRef const& key, ValueRef const& value) {
|
2021-04-15 13:06:37 +08:00
|
|
|
impl->set(key, value);
|
|
|
|
}
|
|
|
|
|
2021-05-01 00:34:36 +08:00
|
|
|
void SimpleConfigTransaction::clear(KeyRef const& key) {
|
2021-04-25 04:37:15 +08:00
|
|
|
impl->clear(key);
|
|
|
|
}
|
|
|
|
|
2021-04-17 08:58:00 +08:00
|
|
|
Future<Void> SimpleConfigTransaction::commit() {
|
2021-04-15 13:06:37 +08:00
|
|
|
return impl->commit();
|
|
|
|
}
|
|
|
|
|
2021-05-01 02:32:53 +08:00
|
|
|
Version SimpleConfigTransaction::getCommittedVersion() const {
|
2021-05-01 00:43:18 +08:00
|
|
|
return impl->getCommittedVersion();
|
2021-05-01 00:34:36 +08:00
|
|
|
}
|
|
|
|
|
2021-05-01 02:32:53 +08:00
|
|
|
int64_t SimpleConfigTransaction::getApproximateSize() const {
|
2021-05-15 15:23:21 +08:00
|
|
|
return impl->getApproximateSize();
|
2021-05-01 00:34:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void SimpleConfigTransaction::setOption(FDBTransactionOptions::Option option, Optional<StringRef> value) {
|
|
|
|
// TODO: Support using this option to determine atomicity
|
|
|
|
}
|
|
|
|
|
2021-04-17 08:58:00 +08:00
|
|
|
Future<Void> SimpleConfigTransaction::onError(Error const& e) {
|
2021-04-15 13:06:37 +08:00
|
|
|
return impl->onError(e);
|
|
|
|
}
|
|
|
|
|
2021-05-01 00:34:36 +08:00
|
|
|
void SimpleConfigTransaction::cancel() {
|
2021-05-15 15:23:21 +08:00
|
|
|
// TODO: Implement someday
|
2021-05-01 00:34:36 +08:00
|
|
|
throw client_invalid_operation();
|
2021-04-23 11:43:23 +08:00
|
|
|
}
|
|
|
|
|
2021-04-17 08:58:00 +08:00
|
|
|
void SimpleConfigTransaction::reset() {
|
2021-04-16 03:44:45 +08:00
|
|
|
return impl->reset();
|
|
|
|
}
|
|
|
|
|
2021-04-23 11:43:23 +08:00
|
|
|
void SimpleConfigTransaction::fullReset() {
|
2021-05-15 15:23:21 +08:00
|
|
|
return impl->fullReset();
|
2021-04-23 11:43:23 +08:00
|
|
|
}
|
|
|
|
|
2021-05-01 00:34:36 +08:00
|
|
|
void SimpleConfigTransaction::debugTransaction(UID dID) {
|
2021-05-14 07:39:58 +08:00
|
|
|
impl->debugTransaction(dID);
|
2021-05-01 00:34:36 +08:00
|
|
|
}
|
|
|
|
|
2021-05-15 15:23:21 +08:00
|
|
|
void SimpleConfigTransaction::checkDeferredError() const {
|
|
|
|
// TODO: Also check for deferred error in database?
|
|
|
|
if (deferredError.code() != invalid_error_code) {
|
|
|
|
throw deferredError;
|
|
|
|
}
|
2021-05-01 00:34:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void SimpleConfigTransaction::getWriteConflicts(KeyRangeMap<bool>* result) {}
|
|
|
|
|
2021-04-17 08:58:00 +08:00
|
|
|
SimpleConfigTransaction::SimpleConfigTransaction(ClusterConnectionString const& ccs)
|
|
|
|
: impl(std::make_unique<SimpleConfigTransactionImpl>(ccs)) {}
|
2021-04-15 13:06:37 +08:00
|
|
|
|
2021-05-15 14:02:40 +08:00
|
|
|
SimpleConfigTransaction::SimpleConfigTransaction(ConfigTransactionInterface const& cti)
|
|
|
|
: impl(std::make_unique<SimpleConfigTransactionImpl>(cti)) {}
|
|
|
|
|
2021-04-17 08:58:00 +08:00
|
|
|
SimpleConfigTransaction::~SimpleConfigTransaction() = default;
|