2020-04-09 05:50:55 +08:00
|
|
|
/*
|
|
|
|
* SpecialKeySpace.actor.h
|
|
|
|
*
|
|
|
|
* This source file is part of the FoundationDB open source project
|
|
|
|
*
|
|
|
|
* Copyright 2013-2020 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.
|
|
|
|
*/
|
|
|
|
|
2020-03-04 10:35:24 +08:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#if defined(NO_INTELLISENSE) && !defined(FDBCLIENT_SPECIALKEYSPACE_ACTOR_G_H)
|
|
|
|
#define FDBCLIENT_SPECIALKEYSPACE_ACTOR_G_H
|
|
|
|
#include "fdbclient/SpecialKeySpace.actor.g.h"
|
|
|
|
#elif !defined(FDBCLIENT_SPECIALKEYSPACE_ACTOR_H)
|
|
|
|
#define FDBCLIENT_SPECIALKEYSPACE_ACTOR_H
|
|
|
|
|
|
|
|
#include "flow/flow.h"
|
|
|
|
#include "flow/Arena.h"
|
|
|
|
#include "fdbclient/FDBTypes.h"
|
|
|
|
#include "fdbclient/KeyRangeMap.h"
|
|
|
|
#include "fdbclient/ReadYourWrites.h"
|
|
|
|
#include "flow/actorcompiler.h" // This must be the last #include.
|
|
|
|
|
2020-06-15 14:11:57 +08:00
|
|
|
class SpecialKeyRangeReadImpl {
|
2020-03-04 10:35:24 +08:00
|
|
|
public:
|
|
|
|
// Each derived class only needs to implement this simple version of getRange
|
2020-05-21 04:55:07 +08:00
|
|
|
virtual Future<Standalone<RangeResultRef>> getRange(ReadYourWritesTransaction* ryw, KeyRangeRef kr) const = 0;
|
2020-03-04 10:35:24 +08:00
|
|
|
|
2020-06-15 14:11:57 +08:00
|
|
|
explicit SpecialKeyRangeReadImpl(KeyRangeRef kr) : range(kr) {}
|
2020-03-04 10:35:24 +08:00
|
|
|
KeyRangeRef getKeyRange() const { return range; }
|
2020-06-12 12:31:05 +08:00
|
|
|
// true if the getRange call can emit more than one rpc calls,
|
|
|
|
// we cache the results to keep consistency in the same getrange lifetime
|
|
|
|
// TODO : give this function a more descriptive name
|
|
|
|
virtual bool isAsync() const { return false; }
|
2020-03-04 10:35:24 +08:00
|
|
|
|
2020-06-15 14:11:57 +08:00
|
|
|
virtual ~SpecialKeyRangeReadImpl() {}
|
2020-05-06 06:04:20 +08:00
|
|
|
|
2020-03-04 10:35:24 +08:00
|
|
|
protected:
|
|
|
|
KeyRange range; // underlying key range for this function
|
2020-06-12 03:22:19 +08:00
|
|
|
};
|
|
|
|
|
2020-06-28 03:22:32 +08:00
|
|
|
class ManagementAPIError {
|
|
|
|
public:
|
|
|
|
static std::string toJsonString(bool retriable, std::string command, std::string msg) {
|
|
|
|
json_spirit::mObject errorObj;
|
|
|
|
errorObj["Retriable"] = retriable;
|
|
|
|
errorObj["Command"] = command;
|
|
|
|
errorObj["Message"] = msg;
|
|
|
|
return json_spirit::write_string(json_spirit::mValue(errorObj), json_spirit::Output_options::raw_utf8);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
ManagementAPIError(){};
|
|
|
|
};
|
|
|
|
|
2020-06-30 06:37:46 +08:00
|
|
|
class SpecialKeyRangeRWImpl : public SpecialKeyRangeReadImpl {
|
2020-06-16 03:47:27 +08:00
|
|
|
public:
|
2020-06-30 06:37:46 +08:00
|
|
|
virtual void set(ReadYourWritesTransaction* ryw, const KeyRef& key, const ValueRef& value) = 0;
|
|
|
|
virtual void clear(ReadYourWritesTransaction* ryw, const KeyRangeRef& range) = 0;
|
|
|
|
virtual void clear(ReadYourWritesTransaction* ryw, const KeyRef& key) = 0;
|
|
|
|
virtual Future<Optional<std::string>> commit(
|
|
|
|
ReadYourWritesTransaction* ryw) = 0; // all delayed async operations of writes in special-key-space
|
2020-06-16 03:47:27 +08:00
|
|
|
|
2020-06-24 02:21:03 +08:00
|
|
|
explicit SpecialKeyRangeRWImpl(KeyRangeRef kr) : SpecialKeyRangeReadImpl(kr) {}
|
2020-06-16 03:47:27 +08:00
|
|
|
|
2020-06-24 02:21:03 +08:00
|
|
|
virtual ~SpecialKeyRangeRWImpl() {}
|
2020-06-16 03:47:27 +08:00
|
|
|
};
|
|
|
|
|
2020-06-15 14:11:57 +08:00
|
|
|
class SpecialKeyRangeAsyncImpl : public SpecialKeyRangeReadImpl {
|
2020-06-12 03:22:19 +08:00
|
|
|
public:
|
2020-06-15 14:11:57 +08:00
|
|
|
explicit SpecialKeyRangeAsyncImpl(KeyRangeRef kr) : SpecialKeyRangeReadImpl(kr) {}
|
2020-06-12 03:22:19 +08:00
|
|
|
|
|
|
|
Future<Standalone<RangeResultRef>> getRange(ReadYourWritesTransaction* ryw, KeyRangeRef kr) const = 0;
|
|
|
|
|
|
|
|
// calling with a cache object to have consistent results if we need to call rpc
|
|
|
|
Future<Standalone<RangeResultRef>> getRange(ReadYourWritesTransaction* ryw, KeyRangeRef kr,
|
|
|
|
Optional<Standalone<RangeResultRef>>* cache) const {
|
|
|
|
return getRangeAsyncActor(this, ryw, kr, cache);
|
|
|
|
}
|
|
|
|
|
2020-06-12 12:31:05 +08:00
|
|
|
bool isAsync() const override { return true; }
|
|
|
|
|
2020-06-15 14:11:57 +08:00
|
|
|
ACTOR static Future<Standalone<RangeResultRef>> getRangeAsyncActor(const SpecialKeyRangeReadImpl* skrAyncImpl,
|
2020-06-12 03:22:19 +08:00
|
|
|
ReadYourWritesTransaction* ryw, KeyRangeRef kr,
|
|
|
|
Optional<Standalone<RangeResultRef>>* cache) {
|
|
|
|
ASSERT(skrAyncImpl->getKeyRange().contains(kr));
|
2020-06-12 12:31:05 +08:00
|
|
|
ASSERT(cache != nullptr);
|
|
|
|
if (!cache->present()) {
|
2020-06-12 03:22:19 +08:00
|
|
|
// For simplicity, every time we need to cache, we read the whole range
|
2020-06-12 12:31:05 +08:00
|
|
|
// Although sometimes the range can be narrowed,
|
|
|
|
// there is not a general way to do it in complicated scenarios
|
2020-06-12 03:22:19 +08:00
|
|
|
Standalone<RangeResultRef> result_ = wait(skrAyncImpl->getRange(ryw, skrAyncImpl->getKeyRange()));
|
|
|
|
*cache = result_;
|
|
|
|
}
|
|
|
|
const auto& allResults = cache->get();
|
|
|
|
int start = 0, end = allResults.size();
|
|
|
|
while (start < allResults.size() && allResults[start].key < kr.begin) ++start;
|
|
|
|
while (end > 0 && allResults[end - 1].key >= kr.end) --end;
|
|
|
|
if (start < end) {
|
|
|
|
Standalone<RangeResultRef> result = RangeResultRef(allResults.slice(start, end), false);
|
|
|
|
result.arena().dependsOn(allResults.arena());
|
|
|
|
return result;
|
|
|
|
} else
|
|
|
|
return Standalone<RangeResultRef>();
|
|
|
|
}
|
2020-03-04 10:35:24 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
class SpecialKeySpace {
|
|
|
|
public:
|
2020-05-13 05:52:37 +08:00
|
|
|
enum class MODULE {
|
2020-05-19 01:38:23 +08:00
|
|
|
CLUSTERFILEPATH,
|
|
|
|
CONNECTIONSTRING,
|
2020-06-28 03:22:32 +08:00
|
|
|
FAILURE, // A single key space contains a json string which describes the last failure in special-key-space
|
2020-06-15 13:29:44 +08:00
|
|
|
MANAGEMENT, // Management-API
|
2020-05-19 01:38:23 +08:00
|
|
|
METRICS, // data-distribution metrics
|
2020-05-15 15:38:06 +08:00
|
|
|
TESTONLY, // only used by correctness tests
|
2020-05-19 01:38:23 +08:00
|
|
|
TRANSACTION, // transaction related info, conflicting keys, read/write conflict range
|
2020-05-13 05:52:37 +08:00
|
|
|
STATUSJSON,
|
2020-05-19 01:38:23 +08:00
|
|
|
UNKNOWN, // default value for all unregistered range
|
|
|
|
WORKERINTERFACE,
|
2020-05-13 05:52:37 +08:00
|
|
|
};
|
2020-05-12 18:29:17 +08:00
|
|
|
|
2020-07-07 05:02:22 +08:00
|
|
|
SpecialKeySpace(KeyRef spaceStartKey = Key(), KeyRef spaceEndKey = normalKeys.end, bool testOnly = true);
|
2020-06-24 02:21:03 +08:00
|
|
|
|
|
|
|
Future<Optional<Value>> get(ReadYourWritesTransaction* ryw, const Key& key);
|
|
|
|
|
|
|
|
Future<Standalone<RangeResultRef>> getRange(ReadYourWritesTransaction* ryw, KeySelector begin, KeySelector end,
|
|
|
|
GetRangeLimits limits, bool reverse = false);
|
2020-06-30 06:37:46 +08:00
|
|
|
|
2020-07-07 05:02:22 +08:00
|
|
|
void set(ReadYourWritesTransaction* ryw, const KeyRef& key, const ValueRef& value);
|
|
|
|
|
|
|
|
void clear(ReadYourWritesTransaction* ryw, const KeyRangeRef& range );
|
|
|
|
|
|
|
|
void clear(ReadYourWritesTransaction* ryw, const KeyRef& key);
|
|
|
|
|
2020-06-24 02:21:03 +08:00
|
|
|
Future<Void> commit(ReadYourWritesTransaction* ryw);
|
|
|
|
|
2020-06-30 06:37:46 +08:00
|
|
|
void registerKeyRange(SpecialKeySpace::MODULE module, const KeyRangeRef& kr, SpecialKeyRangeReadImpl* impl,
|
2020-07-07 05:02:22 +08:00
|
|
|
bool rw = false);
|
2020-05-15 08:30:48 +08:00
|
|
|
|
2020-06-15 14:11:57 +08:00
|
|
|
KeyRangeMap<SpecialKeyRangeReadImpl*>& getReadImpls() { return readImpls; }
|
2020-06-24 02:21:03 +08:00
|
|
|
KeyRangeMap<SpecialKeyRangeRWImpl*>& getRWImpls() { return writeImpls; }
|
2020-06-30 06:37:46 +08:00
|
|
|
KeyRangeMap<SpecialKeySpace::MODULE>& getModules() { return modules; }
|
2020-05-12 15:42:43 +08:00
|
|
|
KeyRangeRef getKeyRange() const { return range; }
|
2020-03-04 10:35:24 +08:00
|
|
|
|
|
|
|
private:
|
2020-05-21 04:55:07 +08:00
|
|
|
ACTOR static Future<Optional<Value>> getActor(SpecialKeySpace* sks, ReadYourWritesTransaction* ryw, KeyRef key);
|
2020-03-04 10:35:24 +08:00
|
|
|
|
2020-06-30 06:37:46 +08:00
|
|
|
ACTOR static Future<Standalone<RangeResultRef>> checkRYWValid(SpecialKeySpace* sks, ReadYourWritesTransaction* ryw,
|
|
|
|
KeySelector begin, KeySelector end,
|
|
|
|
GetRangeLimits limits, bool reverse);
|
|
|
|
ACTOR static Future<Standalone<RangeResultRef>> getRangeAggregationActor(SpecialKeySpace* sks,
|
|
|
|
ReadYourWritesTransaction* ryw,
|
|
|
|
KeySelector begin, KeySelector end,
|
|
|
|
GetRangeLimits limits, bool reverse);
|
2020-06-15 14:11:57 +08:00
|
|
|
|
|
|
|
KeyRangeMap<SpecialKeyRangeReadImpl*> readImpls;
|
2020-06-30 06:37:46 +08:00
|
|
|
KeyRangeMap<SpecialKeySpace::MODULE> modules;
|
2020-06-24 02:21:03 +08:00
|
|
|
KeyRangeMap<SpecialKeyRangeRWImpl*> writeImpls;
|
2020-06-30 06:37:46 +08:00
|
|
|
KeyRange range; // key space range, (\xff\xff, \xff\xff\xff\xf) in prod and (, \xff) in test
|
|
|
|
|
|
|
|
static std::unordered_map<SpecialKeySpace::MODULE, KeyRange> moduleToBoundary;
|
2020-05-13 17:28:04 +08:00
|
|
|
|
2020-06-30 06:37:46 +08:00
|
|
|
// Initialize module boundaries, used to handle cross_module_read
|
2020-07-07 05:02:22 +08:00
|
|
|
void modulesBoundaryInit();
|
2020-03-04 10:35:24 +08:00
|
|
|
};
|
|
|
|
|
2020-04-07 13:09:17 +08:00
|
|
|
// Use special key prefix "\xff\xff/transaction/conflicting_keys/<some_key>",
|
|
|
|
// to retrieve keys which caused latest not_committed(conflicting with another transaction) error.
|
|
|
|
// The returned key value pairs are interpretted as :
|
|
|
|
// prefix/<key1> : '1' - any keys equal or larger than this key are (probably) conflicting keys
|
|
|
|
// prefix/<key2> : '0' - any keys equal or larger than this key are (definitely) not conflicting keys
|
|
|
|
// Currently, the conflicting keyranges returned are original read_conflict_ranges or union of them.
|
2020-06-15 14:11:57 +08:00
|
|
|
class ConflictingKeysImpl : public SpecialKeyRangeReadImpl {
|
2020-04-04 07:11:20 +08:00
|
|
|
public:
|
2020-04-15 00:10:40 +08:00
|
|
|
explicit ConflictingKeysImpl(KeyRangeRef kr);
|
2020-05-21 04:55:07 +08:00
|
|
|
Future<Standalone<RangeResultRef>> getRange(ReadYourWritesTransaction* ryw, KeyRangeRef kr) const override;
|
2020-04-04 07:11:20 +08:00
|
|
|
};
|
|
|
|
|
2020-06-15 14:11:57 +08:00
|
|
|
class ReadConflictRangeImpl : public SpecialKeyRangeReadImpl {
|
2020-04-29 00:00:06 +08:00
|
|
|
public:
|
|
|
|
explicit ReadConflictRangeImpl(KeyRangeRef kr);
|
2020-05-21 04:55:07 +08:00
|
|
|
Future<Standalone<RangeResultRef>> getRange(ReadYourWritesTransaction* ryw, KeyRangeRef kr) const override;
|
2020-04-29 00:00:06 +08:00
|
|
|
};
|
|
|
|
|
2020-06-15 14:11:57 +08:00
|
|
|
class WriteConflictRangeImpl : public SpecialKeyRangeReadImpl {
|
2020-04-29 01:34:10 +08:00
|
|
|
public:
|
|
|
|
explicit WriteConflictRangeImpl(KeyRangeRef kr);
|
2020-05-21 04:55:07 +08:00
|
|
|
Future<Standalone<RangeResultRef>> getRange(ReadYourWritesTransaction* ryw, KeyRangeRef kr) const override;
|
2020-04-29 01:34:10 +08:00
|
|
|
};
|
|
|
|
|
2020-06-12 03:22:19 +08:00
|
|
|
class DDStatsRangeImpl : public SpecialKeyRangeAsyncImpl {
|
2020-05-19 01:38:23 +08:00
|
|
|
public:
|
|
|
|
explicit DDStatsRangeImpl(KeyRangeRef kr);
|
2020-05-22 02:26:34 +08:00
|
|
|
Future<Standalone<RangeResultRef>> getRange(ReadYourWritesTransaction* ryw, KeyRangeRef kr) const override;
|
2020-05-19 01:38:23 +08:00
|
|
|
};
|
|
|
|
|
2020-06-24 02:21:03 +08:00
|
|
|
class ExcludeServersRangeImpl : public SpecialKeyRangeRWImpl {
|
2020-06-15 13:29:44 +08:00
|
|
|
public:
|
|
|
|
explicit ExcludeServersRangeImpl(KeyRangeRef kr);
|
|
|
|
Future<Standalone<RangeResultRef>> getRange(ReadYourWritesTransaction* ryw, KeyRangeRef kr) const override;
|
2020-06-30 06:37:46 +08:00
|
|
|
void set(ReadYourWritesTransaction* ryw, const KeyRef& key, const ValueRef& value) override;
|
|
|
|
void clear(ReadYourWritesTransaction* ryw, const KeyRangeRef& range) override;
|
|
|
|
void clear(ReadYourWritesTransaction* ryw, const KeyRef& key) override;
|
2020-06-28 03:22:32 +08:00
|
|
|
Future<Optional<std::string>> commit(ReadYourWritesTransaction* ryw) override;
|
2020-06-15 13:29:44 +08:00
|
|
|
};
|
|
|
|
|
2020-03-04 10:35:24 +08:00
|
|
|
#include "flow/unactorcompiler.h"
|
|
|
|
#endif
|