Home
last modified time | relevance | path

Searched refs:WAL (Results 1 – 15 of 15) sorted by relevance

/rocksdb-6.9/docs/_posts/
D2017-08-25-flushwal.markdown8WAL (write-ahead log) if it is enabled. In the case of a crash, RocksDB can recover as much as the…
16 The write to the WAL is first written to the application memory buffer. The buffer in the next step…
20 …er can turn off the automatic flush of the WAL by setting `DBOptions::manual_wal_flush`. In that c…
24 …cks includes writing to the RocksDB WAL, which as explaiend above, by default incures the latency …
26 … however needing a storage WAL flush after each individual commit. MyRocks benefits from this prop…
D2019-08-15-unordered-write.markdown52 - WAL: +42%
53 - No-WAL: +34%
55 - WAL: +63%
D2014-03-27-how-to-persist-in-memory-rocksdb-database.markdown25WAL directory. Since we didn't include log files in the backup, we need to make sure that restorin…
D2016-09-28-rocksdb-4-11-2-released.markdown14 * WAL without data for all CFs is not deleted after recovery.
48 …ata with non-default column families using information embedded in the SST/WAL files (4.7 or later…
D2017-06-29-rocksdb-5-5-1-released.markdown18 …ned_write which may improve write throughput in case writing from multiple threads and WAL enabled.
D2017-12-19-write-prepared-txn.markdown25WAL (write-ahead log) as well as to the memtable(s) (one memtable per column family); We reuse the…
D2018-02-05-rocksdb-5-10-2-released.markdown18 * Fix IOError on WAL write doesn't propagate to write group follower
D2014-04-07-rocksdb-2-8-release.markdown36 …ility improvements -- we're now ignoring partially written tailing record to MANIFEST or WAL files.
D2016-04-26-rocksdb-4-5-1-released.markdown45 …r --path to ldb tool. --path accepts the name of either MANIFEST, SST or a WAL file. Either --db o…
D2018-11-21-delete-range.markdown116 `WriteBatch` stores range tombstones in its buffer which are logged to the WAL and
171 delete (optionally within a transaction) pattern. `DeleteRange` only logs to WAL
172 and applies to memtable. Logging to WAL always `fflush`es, and optionally
/rocksdb-6.9/tools/
Drun_flash_bench.sh173 echo WAL backup does not exist at ${wal_dir}.bak
177 echo Restore WAL from ${wal_dir}.bak
187 echo Save WAL to ${wal_dir}.bak
/rocksdb-6.9/utilities/
Denv_librados.md18 - wal_dir. The dir for WAL files. Because RocksDB only has 2-level structure (dir_name/file_name), …
19 - wal_pool. Corresponding pool name for WAL files. Default value is db_name+"_wal_pool"
/rocksdb-6.9/
DHISTORY.md239 * Allow DBImplSecondary to remove memtables with obsolete data after replaying MANIFEST and WAL.
257 * Fix/improve memtable earliest sequence assignment and WAL replay so that WAL entries of unflushed…
259 * On DB open, delete WAL trash files left behind in wal_dir
280 * Close a WAL file before another thread deletes it.
472 * Fix WAL corruption caused by race condition between user write thread and FlushWAL when two_write…
496 * Fix WAL corruption caused by race condition between user write thread and backup/checkpoint threa…
516 * Fix Handle error return from WriteBuffer() during WAL file close and DB close.
547 * Fix IOError on WAL write doesn't propagate to write group follower
912 * Add DB::SyncWAL() that does a WAL sync without blocking writers.
923 … used to apply to both WAL and table files. As of 3.11 it applies only to table files. If you want…
[all …]
DWINDOWS_PORT.md69 …orm writes and reads in cases when un-buffered access does not make sense such as WAL and MANIFEST.
/rocksdb-6.9/db/
Ddb_wal_test.cc135 TEST_F(DBWALTest, WAL) { in TEST_F() argument