Home
last modified time | relevance | path

Searched refs:deleted (Results 1 – 20 of 20) sorted by relevance

/rocksdb-6.9/docs/_posts/
D2018-11-21-delete-range.markdown27 product is removed, all these keys must be deleted.
37 through the to-be-deleted range, and issue a `Delete` for each key. This is
43 the deleted range(s). This deletes the range asynchronously, so cannot be used
44 in cases where readers must not see keys in deleted ranges. Further, it has the
49 If space reclamation time is important, or it is important that the deleted
50 range not affect iterators, the user can trigger `CompactRange` on the deleted
55 `DeleteFilesInRange` can be used prior to compacting the deleted range as long
57 completely contained in the deleted range. That saves write-amp because, in
154 whether the key is deleted.
246 when reading deleted keys.
D2016-09-28-rocksdb-4-11-2-released.markdown14 * WAL without data for all CFs is not deleted after recovery.
D2016-01-29-compaction_pri.markdown34 …ow down iterating over this area, because we still need to iterate those deleted keys just to igno…
36 …performance of space efficiency and query performance when a large percentage of the DB is deleted.
D2016-07-26-rocksdb-4-8-released.markdown42 …_FOUND, ITER_BYTES_READ] are not updated immediately. The are updated when the Iterator is deleted.
D2014-03-27-how-to-persist-in-memory-rocksdb-database.markdown19 … directory under Options::wal_dir. Those archived log files will only be deleted after the specifi…
D2014-06-27-avoid-expensive-locks-in-get.markdown24 …ter super_version_ may be updated, the corresponding SuperVersion may be deleted while Ref() is in…
D2017-06-26-17-level-based-changes.markdown54 …s of files are available for L0->L0, we perform less compaction work per deleted L0 file, thus imp…
D2014-03-27-how-to-backup-rocksdb.markdown75 …backups you'd like to keep. All backups except the N newest ones will be deleted. You can also cho…
/rocksdb-6.9/db/
Dversion_edit.cc189 for (const auto& deleted : deleted_files_) { in EncodeTo() local
190 PutVarint32Varint32Varint64(dst, kDeletedFile, deleted.first /* level */, in EncodeTo()
191 deleted.second /* file number */); in EncodeTo()
Dtable_properties_collector_test.cc442 uint64_t deleted = GetDeletedKeys(user_collected); in TestInternalKeyPropertiesCollector() local
443 ASSERT_EQ(5u, deleted); // deletes + single-deletes in TestInternalKeyPropertiesCollector()
Dcolumn_family.cc618 bool deleted __attribute__((__unused__)); in ~ColumnFamilyData() local
619 deleted = dummy_versions_->Unref(); in ~ColumnFamilyData()
620 assert(deleted); in ~ColumnFamilyData()
Dc.cc1569 void (*deleted)(void*, const char* k, size_t klen)) { in rocksdb_writebatch_iterate()
1573 handler.deleted_ = deleted; in rocksdb_writebatch_iterate()
1813 void (*deleted)(void*, const char* k, size_t klen)) { in rocksdb_writebatch_wi_iterate()
1817 handler.deleted_ = deleted; in rocksdb_writebatch_wi_iterate()
/rocksdb-6.9/tools/rdb/
DAPI.md62 # whether a value was deleted; in the case of a specified key not having
141 deleted.
/rocksdb-6.9/cache/
Dlru_cache.cc236 autovector<LRUHandle*>* deleted) { in EvictFromLRU() argument
247 deleted->push_back(old); in EvictFromLRU()
Dlru_cache.h257 void EvictFromLRU(size_t charge, autovector<LRUHandle*>* deleted); in ALIGN_AS()
/rocksdb-6.9/tools/block_cache_analyzer/
Dblock_cache_pysim_test.py65 deleted = table.delete(key, key_id)
66 if deleted:
Dblock_cache_pysim.py271 deleted = False
284 deleted = True
286 if deleted:
/rocksdb-6.9/CMakeFiles/Export/7a006447cadce6044e9a8143a913fd66/
DRocksDBTargets.cmake95 * The file was deleted, renamed, or moved to another location.
/rocksdb-6.9/include/rocksdb/
Dc.h528 void (*deleted)(void*, const char* k, size_t klen));
621 void (*deleted)(void*, const char* k, size_t klen));
/rocksdb-6.9/
DHISTORY.md128 …backup deletion has proper accounting of shared files to ensure they are deleted when no longer re…
345 * Fix handling of corrupt range tombstone blocks such that corruptions cannot cause deleted keys to…
559 * Deprecate trash_dir param in NewSstFileManager, right now we will rename deleted files to <name>.…
560 …FileManager, after which files that are to be scheduled for deletion are deleted immediately, rega…
571 * Upon snapshot release, recompact bottommost files containing deleted/overwritten keys that previo…
791 …_FOUND, ITER_BYTES_READ] are not updated immediately. The are updated when the Iterator is deleted.
945 * Fixed a bug in ReadOnlyBackupEngine that deleted corrupted backups in some cases, even though the…
1150 * Speeding up a way RocksDB deleted obsolete files - no longer listing the whole directory under a …