Searched refs:live (Results 1 – 7 of 7) sorted by relevance
| /rocksdb-6.9/db/ |
| D | db_filesnapshot.cc | 122 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()
|
| D | version_set.h | 631 void AddLiveFiles(std::vector<FileDescriptor>* live);
|
| D | version_set.cc | 3404 void Version::AddLiveFiles(std::vector<FileDescriptor>* live) { in AddLiveFiles() argument 3408 live->push_back(file->fd); in AddLiveFiles()
|
| /rocksdb-6.9/docs/_posts/ |
| D | 2014-03-27-how-to-backup-rocksdb.markdown | 92 …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). 115 …live 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…
|
| D | 2014-05-14-lock.markdown | 29 …live 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…
|
| D | 2018-11-21-delete-range.markdown | 152 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/ |
| D | HISTORY.md | 170 * 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.
|