Home
last modified time | relevance | path

Searched refs:oldest (Results 1 – 7 of 7) sorted by relevance

/rocksdb-6.9/db/
Dsnapshot_impl.h63 SnapshotImpl* oldest() const { assert(!empty()); return list_.next_; } in oldest() function
147 return oldest()->unix_time_; in GetOldestSnapshotTime()
155 return oldest()->GetSequenceNumber(); in GetOldestSnapshotSequence()
/rocksdb-6.9/tools/advisor/advisor/
Ddb_timeseries_parser.py25 oldest = 5 variable in TimeSeriesData.AggregationOperator
105 elif aggregation_op is self.AggregationOperator.oldest:
/rocksdb-6.9/docs/_posts/
D2016-01-29-compaction_pri.markdown22 …icked covers a range whose last compaction time to the next level is the oldest, so the range will…
24 … for the same effect. With this mode, we always pick the file covers the oldest updates in the lev…
30 …s use case. In this mode, we will pick a file whose latest update is the oldest. It means there is…
D2017-06-26-17-level-based-changes.markdown50 So, we changed the L0->L1 picking algorithm to start from the oldest file and expand towards newer …
/rocksdb-6.9/
DHISTORY.md71 …ollection is performed during compaction: any valid blobs located in the oldest N files (where N i…
106 …mnFamilyMetaData` now expose the file number of SST files as well as the oldest blob file referenc…
110 …ons.periodic_compaction_seconds with options.max_open_files = -1. File's oldest ancester time and …
112 * SstFileMetaData also returns file creation time and oldest ancester time.
115 …s maintained and persisted in the MANIFEST between each SST file and the oldest non-TTL blob file …
118 …new SST file and the oldest blob file referenced by the SST are propagated. For compactions, the l…
124 …OldestFile(uint64_t* creation_time) to get the file_creation_time of the oldest SST file in the DB.
570 * Add a new db property "rocksdb.estimate-oldest-key-time" to return oldest data timestamp. The pro…
/rocksdb-6.9/utilities/blob_db/
Dblob_db_impl.cc1778 oldest_snapshot = snapshots.oldest()->GetSequenceNumber(); in VisibleToActiveSnapshot()
/rocksdb-6.9/db/db_impl/
Ddb_impl.cc2741 oldest_snapshot = snapshots_.oldest()->number_; in ReleaseSnapshot()