Home
last modified time | relevance | path

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

/rocksdb-6.9/db/
Ddb_filesnapshot.cc122 std::vector<FileDescriptor> live; in GetLiveFiles() local
127 cfd->current()->AddLiveFiles(&live); in GetLiveFiles()
131 ret.reserve(live.size() + 3); // *.sst + CURRENT + MANIFEST + OPTIONS in GetLiveFiles()
135 for (const auto& live_file : live) { in GetLiveFiles()
Dversion_set.h631 void AddLiveFiles(std::vector<FileDescriptor>* live);
Dversion_set.cc3404 void Version::AddLiveFiles(std::vector<FileDescriptor>* live) { in AddLiveFiles() argument
3408 live->push_back(file->fd); in AddLiveFiles()
/rocksdb-6.9/docs/_posts/
D2014-03-27-how-to-backup-rocksdb.markdown92 …up. In that case, the backup will also include log files corresponding to live memtables. Backup w…
111 2. Get live files (this includes table files, current and manifest file).
115live files to the backup directory. Since table files are immutable and filenames unique, we don't…
119 …files to the backup directory. We call `GetSortedWalFiles()` and copy all live files to the backup…
D2014-05-14-lock.markdown29live mem tables and SST tables only changes infrequently, which would happen when new mem tables a…
45 (2) When building an iterator, we used to creating iterator of every live men table and SST table w…
D2018-11-21-delete-range.markdown152 search through live memtable, immutable memtables, and then SSTs. When a key is
156 In iterators, we aggregate range tombstones into a skyline as we visit live
184 found across live memtable, immutable memtable, L0 files, and one file from each
/rocksdb-6.9/
DHISTORY.md170 * Added a lightweight API GetCurrentWalFile() to get last live WAL filename and size. Meant to be u…
491 * Add "rocksdb.live-sst-files-size" DB property to return total bytes of all SST files belong to th…
948 … we start deleting files of a dropped column families even if there are still live references to it
1036 * Add DB property rocksdb.estimate-num-keys, estimated number of live keys in DB.