2017-05-26 04:48:44 +08:00
|
|
|
/*
|
|
|
|
* Ratekeeper.actor.cpp
|
|
|
|
*
|
|
|
|
* This source file is part of the FoundationDB open source project
|
|
|
|
*
|
2019-02-16 09:29:52 +08:00
|
|
|
* Copyright 2013-2019 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.
|
|
|
|
*/
|
|
|
|
|
2020-05-09 07:27:57 +08:00
|
|
|
#include "fdbserver/WorkerInterface.actor.h"
|
2017-05-26 04:48:44 +08:00
|
|
|
#include "flow/IndexedSet.h"
|
|
|
|
#include "fdbrpc/FailureMonitor.h"
|
|
|
|
#include "fdbrpc/Smoother.h"
|
|
|
|
#include "fdbrpc/simulator.h"
|
2021-08-18 04:02:25 +08:00
|
|
|
#include "fdbclient/DatabaseContext.h"
|
2019-02-20 08:04:52 +08:00
|
|
|
#include "fdbclient/ReadYourWrites.h"
|
2021-08-11 09:07:36 +08:00
|
|
|
#include "fdbclient/TagThrottle.actor.h"
|
2019-02-15 08:24:46 +08:00
|
|
|
#include "fdbserver/Knobs.h"
|
2019-02-28 03:51:48 +08:00
|
|
|
#include "fdbserver/DataDistribution.actor.h"
|
2022-02-15 04:32:34 +08:00
|
|
|
#include "fdbserver/RatekeeperData.h"
|
2019-03-15 06:00:57 +08:00
|
|
|
#include "fdbserver/RatekeeperInterface.h"
|
2019-02-15 08:24:46 +08:00
|
|
|
#include "fdbserver/ServerDBInfo.h"
|
|
|
|
#include "fdbserver/WaitFailure.h"
|
2021-03-11 02:06:03 +08:00
|
|
|
#include "flow/actorcompiler.h" // This must be the last #include.
|