mirror of
https://github.com/apple/foundationdb.git
synced 2025-06-02 19:25:52 +08:00
* Add an DD tenant-cache-assembly actor * Add basic tenant list monitoring for tenant cache. * Update DD tenant cache refresh to be more efficient and unit-testable * Remove the DD prefix in the tenant cache class name (and associated impl and UT class names); there is nothing specific to DD in it; DD uses it; other modules may use it in the future * Disable DD tenant awareness by default
73 lines
2.1 KiB
C++
73 lines
2.1 KiB
C++
/*
|
|
* TenantCache.h
|
|
*
|
|
* This source file is part of the FoundationDB open source project
|
|
*
|
|
* Copyright 2013-2022 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/FDBTypes.h"
|
|
#include "fdbclient/Tenant.h"
|
|
#include "fdbserver/DDTeamCollection.h"
|
|
#include "fdbserver/TCInfo.h"
|
|
#include "flow/IRandom.h"
|
|
#include "flow/IndexedSet.h"
|
|
#include <limits>
|
|
#include <string>
|
|
|
|
typedef Map<KeyRef, Reference<TCTenantInfo>> TenantMapByPrefix;
|
|
|
|
class TenantCache : public ReferenceCounted<TenantCache> {
|
|
friend class TenantCacheImpl;
|
|
friend class TenantCacheUnitTest;
|
|
|
|
private:
|
|
constexpr static uint64_t INVALID_GENERATION = std::numeric_limits<uint64_t>::max();
|
|
|
|
UID distributorID;
|
|
Database cx;
|
|
uint64_t generation;
|
|
TenantMapByPrefix tenantCache;
|
|
|
|
// mark the start of a new sweep of the tenant cache
|
|
void startRefresh();
|
|
|
|
void insert(TenantName& tenantName, TenantMapEntry& tenant);
|
|
void keep(TenantName& tenantName, TenantMapEntry& tenant);
|
|
|
|
// return true if a new tenant is inserted into the cache
|
|
bool update(TenantName& tenantName, TenantMapEntry& tenant);
|
|
|
|
// return count of tenants that were found to be stale and removed from the cache
|
|
int cleanup();
|
|
|
|
UID id() const { return distributorID; }
|
|
|
|
Database dbcx() const { return cx; }
|
|
|
|
public:
|
|
TenantCache(Database cx, UID distributorID) : distributorID(distributorID), cx(cx) {
|
|
generation = deterministicRandom()->randomUInt32();
|
|
}
|
|
|
|
Future<Void> build(Database cx);
|
|
|
|
Future<Void> monitorTenantMap();
|
|
|
|
std::string desc() const;
|
|
|
|
bool isTenantKey(KeyRef key) const;
|
|
};
|