rippled
|
Public Member Functions | |
DatabaseNodeImp ()=delete | |
DatabaseNodeImp (DatabaseNodeImp const &)=delete | |
DatabaseNodeImp & | operator= (DatabaseNodeImp const &)=delete |
DatabaseNodeImp (Scheduler &scheduler, int readThreads, std::shared_ptr< Backend > backend, Section const &config, beast::Journal j) | |
~DatabaseNodeImp () | |
std::string | getName () const override |
Retrieve the name associated with this backend. More... | |
std::int32_t | getWriteLoad () const override |
Retrieve the estimated number of pending write operations. More... | |
void | importDatabase (Database &source) override |
Import objects from another database. More... | |
void | store (NodeObjectType type, Blob &&data, uint256 const &hash, std::uint32_t) override |
Store the object. More... | |
bool | isSameDB (std::uint32_t, std::uint32_t) override |
void | sync () override |
std::vector< std::shared_ptr< NodeObject > > | fetchBatch (std::vector< uint256 > const &hashes) |
void | asyncFetch (uint256 const &hash, std::uint32_t ledgerSeq, std::function< void(std::shared_ptr< NodeObject > const &)> &&callback) override |
Fetch an object without waiting. More... | |
bool | storeLedger (std::shared_ptr< Ledger const > const &srcLedger) override |
Store a ledger from a different database. More... | |
void | sweep () override |
Remove expired entries from the positive and negative caches. More... | |
std::shared_ptr< NodeObject > | fetchNodeObject (uint256 const &hash, std::uint32_t ledgerSeq=0, FetchType fetchType=FetchType::synchronous, bool duplicate=false) |
Fetch a node object. More... | |
std::uint64_t | getStoreCount () const |
Gather statistics pertaining to read and write activities. More... | |
std::uint32_t | getFetchTotalCount () const |
std::uint32_t | getFetchHitCount () const |
std::uint64_t | getStoreSize () const |
std::uint32_t | getFetchSize () const |
void | getCountsJson (Json::Value &obj) |
int | fdRequired () const |
Returns the number of file descriptors the database expects to need. More... | |
virtual void | stop () |
bool | isStopping () const |
std::uint32_t | ledgersPerShard () const noexcept |
std::uint32_t | earliestLedgerSeq () const noexcept |
std::uint32_t | earliestShardIndex () const noexcept |
std::uint32_t | firstLedgerSeq (std::uint32_t shardIndex) const noexcept |
Calculates the first ledger sequence for a given shard index. More... | |
std::uint32_t | lastLedgerSeq (std::uint32_t shardIndex) const noexcept |
Calculates the last ledger sequence for a given shard index. More... | |
std::uint32_t | seqToShardIndex (std::uint32_t ledgerSeq) const noexcept |
Calculates the shard index for a given ledger sequence. More... | |
std::uint32_t | maxLedgers (std::uint32_t shardIndex) const noexcept |
Calculates the maximum ledgers for a given shard index. More... | |
Protected Member Functions | |
bool | storeLedger (Ledger const &srcLedger, std::shared_ptr< Backend > dstBackend) |
void | storeStats (std::uint64_t count, std::uint64_t sz) |
void | importInternal (Backend &dstBackend, Database &srcDB) |
void | updateFetchMetrics (uint64_t fetches, uint64_t hits, uint64_t duration) |
Protected Attributes | |
const beast::Journal | j_ |
Scheduler & | scheduler_ |
int | fdRequired_ {0} |
std::atomic< std::uint32_t > | fetchHitCount_ {0} |
std::atomic< std::uint32_t > | fetchSz_ {0} |
const std::uint32_t | ledgersPerShard_ |
const std::uint32_t | earliestLedgerSeq_ |
const std::uint32_t | earliestShardIndex_ |
const int | requestBundle_ |
Private Member Functions | |
std::shared_ptr< NodeObject > | fetchNodeObject (uint256 const &hash, std::uint32_t, FetchReport &fetchReport, bool duplicate) override |
void | for_each (std::function< void(std::shared_ptr< NodeObject >)> f) override |
Visit every object in the database This is usually called during import. More... | |
std::optional< Backend::Counters< std::uint64_t > > | getCounters () const override |
Retrieve backend read and write stats. More... | |
void | threadEntry () |
Private Attributes | |
std::shared_ptr< TaggedCache< uint256, NodeObject > > | cache_ |
std::shared_ptr< Backend > | backend_ |
std::atomic< std::uint64_t > | storeCount_ {0} |
std::atomic< std::uint64_t > | storeSz_ {0} |
std::atomic< std::uint64_t > | fetchTotalCount_ {0} |
std::atomic< std::uint64_t > | fetchDurationUs_ {0} |
std::atomic< std::uint64_t > | storeDurationUs_ {0} |
std::mutex | readLock_ |
std::condition_variable | readCondVar_ |
std::map< uint256, std::vector< std::pair< std::uint32_t, std::function< void(std::shared_ptr< NodeObject > const &)> > > > | read_ |
std::atomic< bool > | readStopping_ = false |
std::atomic< int > | readThreads_ = 0 |
std::atomic< int > | runningThreads_ = 0 |
Definition at line 30 of file DatabaseNodeImp.h.
|
delete |
|
delete |
ripple::NodeStore::DatabaseNodeImp::DatabaseNodeImp | ( | Scheduler & | scheduler, |
int | readThreads, | ||
std::shared_ptr< Backend > | backend, | ||
Section const & | config, | ||
beast::Journal | j | ||
) |
Definition at line 38 of file DatabaseNodeImp.h.
ripple::NodeStore::DatabaseNodeImp::~DatabaseNodeImp | ( | ) |
Definition at line 82 of file DatabaseNodeImp.h.
|
delete |
|
overridevirtual |
Retrieve the name associated with this backend.
This is used for diagnostics and may not reflect the actual path or paths used by the underlying backend.
Implements ripple::NodeStore::Database.
Definition at line 88 of file DatabaseNodeImp.h.
|
overridevirtual |
Retrieve the estimated number of pending write operations.
This is used for diagnostics.
Implements ripple::NodeStore::Database.
Definition at line 94 of file DatabaseNodeImp.h.
|
overridevirtual |
Import objects from another database.
Implements ripple::NodeStore::Database.
Definition at line 100 of file DatabaseNodeImp.h.
|
overridevirtual |
Store the object.
The caller's Blob parameter is overwritten.
type | The type of object. |
data | The payload of the object. The caller's variable is overwritten. |
hash | The 256-bit hash of the payload data. |
ledgerSeq | The sequence of the ledger the object belongs to. |
true
if the object was stored? Implements ripple::NodeStore::Database.
Definition at line 28 of file DatabaseNodeImp.cpp.
|
overridevirtual |
Implements ripple::NodeStore::Database.
Definition at line 109 of file DatabaseNodeImp.h.
|
overridevirtual |
Implements ripple::NodeStore::Database.
Definition at line 116 of file DatabaseNodeImp.h.
std::vector< std::shared_ptr< NodeObject > > ripple::NodeStore::DatabaseNodeImp::fetchBatch | ( | std::vector< uint256 > const & | hashes | ) |
Definition at line 147 of file DatabaseNodeImp.cpp.
|
overridevirtual |
Fetch an object without waiting.
If I/O is required to determine whether or not the object is present, false
is returned. Otherwise, true
is returned and object
is set to refer to the object, or nullptr
if the object is not present. If I/O is required, the I/O is scheduled and true
is returned
hash | The key of the object to retrieve |
ledgerSeq | The sequence of the ledger where the object is stored, used by the shard store. |
callback | Callback function when read completes |
Reimplemented from ripple::NodeStore::Database.
Definition at line 49 of file DatabaseNodeImp.cpp.
|
overridevirtual |
Store a ledger from a different database.
srcLedger | The ledger to store. |
Implements ripple::NodeStore::Database.
Definition at line 132 of file DatabaseNodeImp.h.
|
overridevirtual |
Remove expired entries from the positive and negative caches.
Implements ripple::NodeStore::Database.
Definition at line 67 of file DatabaseNodeImp.cpp.
|
overrideprivatevirtual |
Implements ripple::NodeStore::Database.
Definition at line 74 of file DatabaseNodeImp.cpp.
|
overrideprivatevirtual |
Visit every object in the database This is usually called during import.
Implements ripple::NodeStore::Database.
Definition at line 155 of file DatabaseNodeImp.h.
|
overrideprivatevirtual |
Retrieve backend read and write stats.
Reimplemented from ripple::NodeStore::Database.
Definition at line 161 of file DatabaseNodeImp.h.
|
inherited |
Fetch a node object.
If the object is known to be not in the database, isn't found in the database during the fetch, or failed to load correctly during the fetch, nullptr
is returned.
hash | The key of the object to retrieve. |
ledgerSeq | The sequence of the ledger where the object is stored. |
fetchType | the type of fetch, synchronous or asynchronous. |
Definition at line 252 of file Database.cpp.
|
protectedinherited |
Definition at line 279 of file Database.cpp.
|
inherited |
Gather statistics pertaining to read and write activities.
obj | Json object reference into which to place counters. |
Definition at line 182 of file Database.h.
|
inherited |
Definition at line 188 of file Database.h.
|
inherited |
Definition at line 194 of file Database.h.
|
inherited |
Definition at line 200 of file Database.h.
|
inherited |
Definition at line 206 of file Database.h.
|
inherited |
Definition at line 378 of file Database.cpp.
|
inherited |
Returns the number of file descriptors the database expects to need.
Definition at line 216 of file Database.h.
|
virtualinherited |
Reimplemented in ripple::NodeStore::DatabaseShardImp.
Definition at line 165 of file Database.cpp.
|
inherited |
Definition at line 146 of file Database.cpp.
|
noexceptinherited |
Definition at line 230 of file Database.h.
|
noexceptinherited |
Definition at line 238 of file Database.h.
|
noexceptinherited |
Definition at line 246 of file Database.h.
|
noexceptinherited |
Calculates the first ledger sequence for a given shard index.
shardIndex | The shard index considered |
Definition at line 257 of file Database.h.
|
noexceptinherited |
Calculates the last ledger sequence for a given shard index.
shardIndex | The shard index considered |
Definition at line 271 of file Database.h.
|
noexceptinherited |
Calculates the shard index for a given ledger sequence.
ledgerSeq | ledger sequence |
Definition at line 283 of file Database.h.
|
noexceptinherited |
Calculates the maximum ledgers for a given shard index.
shardIndex | The shard index considered |
Definition at line 152 of file Database.cpp.
|
protectedinherited |
Definition at line 333 of file Database.h.
|
protectedinherited |
Definition at line 213 of file Database.cpp.
|
protectedinherited |
Definition at line 349 of file Database.h.
|
privateinherited |
|
private |
Definition at line 143 of file DatabaseNodeImp.h.
|
private |
Definition at line 145 of file DatabaseNodeImp.h.
|
protectedinherited |
Definition at line 301 of file Database.h.
|
protectedinherited |
Definition at line 302 of file Database.h.
|
protectedinherited |
Definition at line 303 of file Database.h.
|
protectedinherited |
Definition at line 305 of file Database.h.
|
protectedinherited |
Definition at line 306 of file Database.h.
|
protectedinherited |
Definition at line 314 of file Database.h.
|
protectedinherited |
Definition at line 322 of file Database.h.
|
protectedinherited |
Definition at line 325 of file Database.h.
|
protectedinherited |
Definition at line 330 of file Database.h.
|
privateinherited |
Definition at line 357 of file Database.h.
|
privateinherited |
Definition at line 358 of file Database.h.
|
privateinherited |
Definition at line 359 of file Database.h.
|
privateinherited |
Definition at line 360 of file Database.h.
|
privateinherited |
Definition at line 361 of file Database.h.
|
mutableprivateinherited |
Definition at line 363 of file Database.h.
|
privateinherited |
Definition at line 364 of file Database.h.
|
privateinherited |
Definition at line 372 of file Database.h.
|
privateinherited |
Definition at line 374 of file Database.h.
|
privateinherited |
Definition at line 375 of file Database.h.
|
privateinherited |
Definition at line 376 of file Database.h.