2017-05-26 04:48:44 +08:00
|
|
|
/*
|
|
|
|
* QuietDatabase.h
|
|
|
|
*
|
|
|
|
* This source file is part of the FoundationDB open source project
|
|
|
|
*
|
|
|
|
* Copyright 2013-2018 Apple Inc. and the FoundationDB project authors
|
2018-02-22 02:25:11 +08:00
|
|
|
*
|
2017-05-26 04:48:44 +08:00
|
|
|
* 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
|
2018-02-22 02:25:11 +08:00
|
|
|
*
|
2017-05-26 04:48:44 +08:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2018-02-22 02:25:11 +08:00
|
|
|
*
|
2017-05-26 04:48:44 +08:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef FDBSERVER_QUIETDATABASE_H
|
|
|
|
#define FDBSERVER_QUIETDATABASE_H
|
|
|
|
#pragma once
|
|
|
|
|
2019-02-18 07:41:16 +08:00
|
|
|
#include "fdbclient/NativeAPI.actor.h"
|
2017-05-26 04:48:44 +08:00
|
|
|
#include "fdbclient/DatabaseContext.h" // for clone()
|
2019-02-18 11:25:16 +08:00
|
|
|
#include "fdbserver/TesterInterface.actor.h"
|
2019-02-18 11:13:26 +08:00
|
|
|
#include "fdbserver/WorkerInterface.actor.h"
|
2018-08-11 05:05:28 +08:00
|
|
|
#include "flow/actorcompiler.h"
|
2017-05-26 04:48:44 +08:00
|
|
|
|
2021-07-12 13:04:38 +08:00
|
|
|
Future<int64_t> getDataInFlight(Database const& cx, Reference<AsyncVar<struct ServerDBInfo> const> const&);
|
2021-03-11 02:06:03 +08:00
|
|
|
Future<std::pair<int64_t, int64_t>> getTLogQueueInfo(Database const& cx,
|
2021-07-12 13:04:38 +08:00
|
|
|
Reference<AsyncVar<struct ServerDBInfo> const> const&);
|
|
|
|
Future<int64_t> getMaxStorageServerQueueSize(Database const& cx, Reference<AsyncVar<struct ServerDBInfo> const> const&);
|
2021-03-11 02:06:03 +08:00
|
|
|
Future<int64_t> getDataDistributionQueueSize(Database const& cx,
|
2021-07-12 13:04:38 +08:00
|
|
|
Reference<AsyncVar<struct ServerDBInfo> const> const&,
|
2021-03-11 02:06:03 +08:00
|
|
|
bool const& reportInFlight);
|
2019-02-13 05:41:18 +08:00
|
|
|
Future<bool> getTeamCollectionValid(Database const& cx, WorkerInterface const&);
|
2021-07-12 13:04:38 +08:00
|
|
|
Future<bool> getTeamCollectionValid(Database const& cx, Reference<AsyncVar<struct ServerDBInfo> const> const&);
|
2021-09-17 08:42:34 +08:00
|
|
|
Future<std::vector<StorageServerInterface>> getStorageServers(Database const& cx,
|
|
|
|
bool const& use_system_priority = false);
|
2021-10-14 04:37:56 +08:00
|
|
|
Future<std::vector<BlobWorkerInterface>> getBlobWorkers(Database const& cx, bool const& use_system_priority = false);
|
2021-09-17 08:42:34 +08:00
|
|
|
Future<std::vector<WorkerDetails>> getWorkers(Reference<AsyncVar<ServerDBInfo> const> const& dbInfo,
|
|
|
|
int const& flags = 0);
|
2021-07-12 13:04:38 +08:00
|
|
|
Future<WorkerInterface> getMasterWorker(Database const& cx, Reference<AsyncVar<ServerDBInfo> const> const& dbInfo);
|
2021-03-11 02:06:03 +08:00
|
|
|
Future<Void> repairDeadDatacenter(Database const& cx,
|
2021-07-12 13:04:38 +08:00
|
|
|
Reference<AsyncVar<ServerDBInfo> const> const& dbInfo,
|
2021-03-11 02:06:03 +08:00
|
|
|
std::string const& context);
|
2021-09-17 08:42:34 +08:00
|
|
|
Future<std::vector<WorkerInterface>> getStorageWorkers(Database const& cx,
|
|
|
|
Reference<AsyncVar<ServerDBInfo> const> const& dbInfo,
|
|
|
|
bool const& localOnly);
|
|
|
|
Future<std::vector<WorkerInterface>> getCoordWorkers(Database const& cx,
|
|
|
|
Reference<AsyncVar<ServerDBInfo> const> const& dbInfo);
|
2017-05-26 04:48:44 +08:00
|
|
|
|
2018-08-11 05:05:28 +08:00
|
|
|
#include "flow/unactorcompiler.h"
|
2018-07-17 01:06:57 +08:00
|
|
|
#endif
|