mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Add Reporting Mode
* Add a new operating mode to rippled called reporting mode * Add ETL mechanism for a reporting node to extract data from a p2p node * Add new gRPC methods to faciliate ETL * Use Postgres in place of SQLite in reporting mode * Add Cassandra as a nodestore option * Update logic of RPC handlers when running in reporting mode * Add ability to forward RPCs to a p2p node
This commit is contained in:
@@ -32,7 +32,7 @@ namespace ripple {
|
||||
namespace test {
|
||||
|
||||
extern void
|
||||
incPorts();
|
||||
incPorts(int times);
|
||||
|
||||
namespace detail {
|
||||
|
||||
@@ -515,8 +515,7 @@ multi_runner_child::multi_runner_child(
|
||||
, print_log_{!quiet || print_log}
|
||||
{
|
||||
// incPort twice (2*jobIndex_) because some tests need two envs
|
||||
for (std::size_t i = 0; i < 2 * job_index_; ++i)
|
||||
test::incPorts();
|
||||
test::incPorts(2 * job_index_);
|
||||
|
||||
if (num_jobs_ > 1)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user