Clio develop
The XRP Ledger API server.
Loading...
Searching...
No Matches
LoadBalancer.hpp
1//------------------------------------------------------------------------------
2/*
3 This file is part of clio: https://github.com/XRPLF/clio
4 Copyright (c) 2022, the clio developers.
5
6 Permission to use, copy, modify, and distribute this software for any
7 purpose with or without fee is hereby granted, provided that the above
8 copyright notice and this permission notice appear in all copies.
9
10 THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17*/
18//==============================================================================
19
20#pragma once
21
22#include "data/BackendInterface.hpp"
23#include "etl/ETLState.hpp"
25#include "etlng/InitialLoadObserverInterface.hpp"
27#include "etlng/Source.hpp"
28#include "feed/SubscriptionManagerInterface.hpp"
29#include "rpc/Errors.hpp"
30#include "util/Assert.hpp"
31#include "util/Mutex.hpp"
32#include "util/ResponseExpirationCache.hpp"
33#include "util/config/ConfigDefinition.hpp"
34#include "util/log/Logger.hpp"
35#include "util/prometheus/Counter.hpp"
36
37#include <boost/asio.hpp>
38#include <boost/asio/io_context.hpp>
39#include <boost/asio/spawn.hpp>
40#include <boost/json/object.hpp>
41#include <boost/json/value.hpp>
42#include <grpcpp/grpcpp.h>
43#include <org/xrpl/rpc/v1/get_ledger.pb.h>
44#include <org/xrpl/rpc/v1/ledger.pb.h>
45#include <xrpl/proto/org/xrpl/rpc/v1/xrp_ledger.grpc.pb.h>
46
47#include <chrono>
48#include <concepts>
49#include <cstdint>
50#include <expected>
51#include <memory>
52#include <optional>
53#include <string>
54#include <string_view>
55#include <utility>
56#include <vector>
57
58namespace etlng {
59
64 virtual ~LoadBalancerTag() = default;
65};
66
67template <typename T>
68concept SomeLoadBalancer = std::derived_from<T, LoadBalancerTag>;
69
78public:
79 using RawLedgerObjectType = org::xrpl::rpc::v1::RawLedgerObject;
80 using GetLedgerResponseType = org::xrpl::rpc::v1::GetLedgerResponse;
81 using OptionalGetLedgerResponseType = std::optional<GetLedgerResponseType>;
82
83private:
84 static constexpr std::uint32_t kDEFAULT_DOWNLOAD_RANGES = 16;
85
86 util::Logger log_{"ETL"};
87 // Forwarding cache must be destroyed after sources because sources have a callback to invalidate cache
88 std::optional<util::ResponseExpirationCache> forwardingCache_;
89 std::optional<std::string> forwardingXUserValue_;
90
91 std::vector<SourcePtr> sources_;
92 std::optional<etl::ETLState> etlState_;
93 std::uint32_t downloadRanges_ =
94 kDEFAULT_DOWNLOAD_RANGES; /*< The number of markers to use when downloading initial ledger */
95
96 struct ForwardingCounters {
97 std::reference_wrapper<util::prometheus::CounterInt> successDuration;
98 std::reference_wrapper<util::prometheus::CounterInt> failDuration;
99 std::reference_wrapper<util::prometheus::CounterInt> retries;
100 std::reference_wrapper<util::prometheus::CounterInt> cacheHit;
101 std::reference_wrapper<util::prometheus::CounterInt> cacheMiss;
102 } forwardingCounters_;
103
104 // Using mutext instead of atomic_bool because choosing a new source to
105 // forward messages should be done with a mutual exclusion otherwise there will be a race condition
106 util::Mutex<bool> hasForwardingSource_{false};
107
108public:
112 static constexpr std::string_view kADMIN_FORWARDING_X_USER_VALUE = "clio_admin";
113
117 static constexpr std::string_view kUSER_FORWARDING_X_USER_VALUE = "clio_user";
118
131 boost::asio::io_context& ioc,
132 std::shared_ptr<BackendInterface> backend,
133 std::shared_ptr<feed::SubscriptionManagerInterface> subscriptions,
134 std::shared_ptr<etl::NetworkValidatedLedgersInterface> validatedLedgers,
135 SourceFactory sourceFactory = makeSource
136 );
137
149 static std::shared_ptr<LoadBalancerInterface>
152 boost::asio::io_context& ioc,
153 std::shared_ptr<BackendInterface> backend,
154 std::shared_ptr<feed::SubscriptionManagerInterface> subscriptions,
155 std::shared_ptr<etl::NetworkValidatedLedgersInterface> validatedLedgers,
156 SourceFactory sourceFactory = makeSource
157 );
158
167 std::vector<std::string>
169 [[maybe_unused]] uint32_t sequence,
170 [[maybe_unused]] std::chrono::steady_clock::duration retryAfter
171 ) override
172 {
173 ASSERT(false, "Not available for new ETL");
174 std::unreachable();
175 };
176
186 std::vector<std::string>
188 uint32_t sequence,
190 std::chrono::steady_clock::duration retryAfter
191 ) override;
192
206 OptionalGetLedgerResponseType
208 uint32_t ledgerSequence,
209 bool getObjects,
210 bool getObjectNeighbors,
211 std::chrono::steady_clock::duration retryAfter = std::chrono::seconds{2}
212 ) override;
213
219 boost::json::value
220 toJson() const override;
221
231 std::expected<boost::json::object, rpc::CombinedError>
233 boost::json::object const& request,
234 std::optional<std::string> const& clientIp,
235 bool isAdmin,
236 boost::asio::yield_context yield
237 ) override;
238
243 std::optional<etl::ETLState>
244 getETLState() noexcept override;
245
252 void
253 stop(boost::asio::yield_context yield) override;
254
255private:
268 template <typename Func>
269 void
270 execute(Func f, uint32_t ledgerSequence, std::chrono::steady_clock::duration retryAfter = std::chrono::seconds{2});
271
275 void
276 chooseForwardingSource();
277
278 std::expected<boost::json::object, rpc::CombinedError>
279 forwardToRippledImpl(
280 boost::json::object const& request,
281 std::optional<std::string> const& clientIp,
282 bool isAdmin,
283 boost::asio::yield_context yield
284 );
285};
286
287} // namespace etlng
An interface for LoadBalancer.
Definition LoadBalancerInterface.hpp:45
This class is used to manage connections to transaction processing processes.
Definition LoadBalancer.hpp:77
void stop(boost::asio::yield_context yield) override
Stop the load balancer. This will stop all subscription sources.
Definition LoadBalancer.cpp:374
std::optional< etl::ETLState > getETLState() noexcept override
Return state of ETL nodes.
Definition LoadBalancer.cpp:364
LoadBalancer(util::config::ClioConfigDefinition const &config, boost::asio::io_context &ioc, std::shared_ptr< BackendInterface > backend, std::shared_ptr< feed::SubscriptionManagerInterface > subscriptions, std::shared_ptr< etl::NetworkValidatedLedgersInterface > validatedLedgers, SourceFactory sourceFactory=makeSource)
Create an instance of the load balancer.
Definition LoadBalancer.cpp:84
std::vector< std::string > loadInitialLedger(uint32_t sequence, std::chrono::steady_clock::duration retryAfter) override
Load the initial ledger, writing data to the queue.
Definition LoadBalancer.hpp:168
static std::shared_ptr< LoadBalancerInterface > makeLoadBalancer(util::config::ClioConfigDefinition const &config, boost::asio::io_context &ioc, std::shared_ptr< BackendInterface > backend, std::shared_ptr< feed::SubscriptionManagerInterface > subscriptions, std::shared_ptr< etl::NetworkValidatedLedgersInterface > validatedLedgers, SourceFactory sourceFactory=makeSource)
A factory function for the load balancer.
Definition LoadBalancer.cpp:70
std::expected< boost::json::object, rpc::CombinedError > forwardToRippled(boost::json::object const &request, std::optional< std::string > const &clientIp, bool isAdmin, boost::asio::yield_context yield) override
Forward a JSON RPC request to a randomly selected rippled node.
Definition LoadBalancer.cpp:262
OptionalGetLedgerResponseType fetchLedger(uint32_t ledgerSequence, bool getObjects, bool getObjectNeighbors, std::chrono::steady_clock::duration retryAfter=std::chrono::seconds{2}) override
Fetch data for a specific ledger.
Definition LoadBalancer.cpp:232
static constexpr std::string_view kUSER_FORWARDING_X_USER_VALUE
Value for the X-User header when forwarding user requests.
Definition LoadBalancer.hpp:117
boost::json::value toJson() const override
Represent the state of this load balancer as a JSON object.
Definition LoadBalancer.cpp:312
static constexpr std::string_view kADMIN_FORWARDING_X_USER_VALUE
Value for the X-User header when forwarding admin requests.
Definition LoadBalancer.hpp:112
A simple thread-safe logger for the channel specified in the constructor.
Definition Logger.hpp:111
A container for data that is protected by a mutex. Inspired by Mutex in Rust.
Definition Mutex.hpp:96
All the config data will be stored and extracted from this class.
Definition ConfigDefinition.hpp:54
Definition LoadBalancer.hpp:68
The interface for observing the initial ledger load.
Definition InitialLoadObserverInterface.hpp:36
A tag class to help identify LoadBalancer in templated code.
Definition LoadBalancer.hpp:63