|
rippled
|


Public Member Functions | |
| DatabaseRotatingImp ()=delete | |
| DatabaseRotatingImp (DatabaseRotatingImp const &)=delete | |
| DatabaseRotatingImp & | operator= (DatabaseRotatingImp const &)=delete |
| DatabaseRotatingImp (Scheduler &scheduler, int readThreads, std::shared_ptr< Backend > writableBackend, std::shared_ptr< Backend > archiveBackend, Section const &config, beast::Journal j) | |
| ~DatabaseRotatingImp () | |
| void | rotateWithLock (std::function< std::unique_ptr< NodeStore::Backend >(std::string const &writableBackendName)> const &f) override |
| Rotates the backends. More... | |
| 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... | |
| bool | isSameDB (std::uint32_t, std::uint32_t) override |
| void | store (NodeObjectType type, Blob &&data, uint256 const &hash, std::uint32_t) override |
| void | sync () override |
| 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... | |
| virtual void | store (NodeObjectType type, Blob &&data, uint256 const &hash, std::uint32_t ledgerSeq)=0 |
| Store the object. 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... | |
| void | asyncFetch (uint256 const &hash, std::uint32_t ledgerSeq, std::function< void(std::shared_ptr< NodeObject > const &)> &&callback) |
| Fetch an object without waiting. 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_ |
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... | |
| virtual std::optional< Backend::Counters< std::uint64_t > > | getCounters () const |
| Retrieve backend read and write stats. More... | |
| void | threadEntry () |
Private Attributes | |
| std::shared_ptr< Backend > | writableBackend_ |
| std::shared_ptr< Backend > | archiveBackend_ |
| std::mutex | mutex_ |
| 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_ |
| uint256 | readLastHash_ |
| std::vector< std::thread > | readThreads_ |
| bool | readStopping_ {false} |
Definition at line 28 of file DatabaseRotatingImp.h.
|
delete |
|
delete |
| ripple::NodeStore::DatabaseRotatingImp::DatabaseRotatingImp | ( | Scheduler & | scheduler, |
| int | readThreads, | ||
| std::shared_ptr< Backend > | writableBackend, | ||
| std::shared_ptr< Backend > | archiveBackend, | ||
| Section const & | config, | ||
| beast::Journal | j | ||
| ) |
Definition at line 27 of file DatabaseRotatingImp.cpp.
| ripple::NodeStore::DatabaseRotatingImp::~DatabaseRotatingImp | ( | ) |
Definition at line 44 of file DatabaseRotatingImp.h.
|
delete |
|
overridevirtual |
Rotates the backends.
| f | A function executed before the rotation and under the same lock |
Implements ripple::NodeStore::DatabaseRotating.
Definition at line 45 of file DatabaseRotatingImp.cpp.
|
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 58 of file DatabaseRotatingImp.cpp.
|
overridevirtual |
Retrieve the estimated number of pending write operations.
This is used for diagnostics.
Implements ripple::NodeStore::Database.
Definition at line 65 of file DatabaseRotatingImp.cpp.
|
overridevirtual |
Import objects from another database.
Implements ripple::NodeStore::Database.
Definition at line 72 of file DatabaseRotatingImp.cpp.
|
overridevirtual |
Implements ripple::NodeStore::Database.
Definition at line 63 of file DatabaseRotatingImp.h.
|
override |
Definition at line 101 of file DatabaseRotatingImp.cpp.
|
overridevirtual |
Implements ripple::NodeStore::Database.
Definition at line 94 of file DatabaseRotatingImp.cpp.
|
overridevirtual |
Store a ledger from a different database.
| srcLedger | The ledger to store. |
Implements ripple::NodeStore::Database.
Definition at line 83 of file DatabaseRotatingImp.cpp.
|
overridevirtual |
Remove expired entries from the positive and negative caches.
Implements ripple::NodeStore::Database.
Definition at line 119 of file DatabaseRotatingImp.cpp.
|
overrideprivate |
Definition at line 125 of file DatabaseRotatingImp.cpp.
|
overrideprivatevirtual |
Visit every object in the database This is usually called during import.
Implements ripple::NodeStore::Database.
Definition at line 195 of file DatabaseRotatingImp.cpp.
|
pure virtualinherited |
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? Implemented in ripple::NodeStore::DatabaseNodeImp.
|
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 158 of file Database.cpp.
|
inherited |
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 |
Definition at line 107 of file Database.cpp.
|
protectedinherited |
Definition at line 185 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 331 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 89 of file Database.cpp.
|
inherited |
Definition at line 69 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 76 of file Database.cpp.
|
protectedinherited |
Definition at line 328 of file Database.h.
|
protectedinherited |
Definition at line 119 of file Database.cpp.
|
protectedinherited |
Definition at line 344 of file Database.h.
|
privatevirtualinherited |
Retrieve backend read and write stats.
Reimplemented in ripple::NodeStore::DatabaseNodeImp.
Definition at line 398 of file Database.h.
|
privateinherited |
Definition at line 285 of file Database.cpp.
|
private |
Definition at line 83 of file DatabaseRotatingImp.h.
|
private |
Definition at line 84 of file DatabaseRotatingImp.h.
|
mutableprivate |
Definition at line 85 of file DatabaseRotatingImp.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.
|
privateinherited |
Definition at line 352 of file Database.h.
|
privateinherited |
Definition at line 353 of file Database.h.
|
privateinherited |
Definition at line 354 of file Database.h.
|
privateinherited |
Definition at line 355 of file Database.h.
|
privateinherited |
Definition at line 356 of file Database.h.
|
mutableprivateinherited |
Definition at line 358 of file Database.h.
|
privateinherited |
Definition at line 359 of file Database.h.
|
privateinherited |
Definition at line 367 of file Database.h.
|
privateinherited |
Definition at line 370 of file Database.h.
|
privateinherited |
Definition at line 372 of file Database.h.
|
privateinherited |
Definition at line 373 of file Database.h.
1.8.17