Searched refs:WAL (Results 1 – 15 of 15) sorted by relevance
8 …WAL (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…
52 - WAL: +42%53 - No-WAL: +34%55 - WAL: +63%
25 …WAL directory. Since we didn't include log files in the backup, we need to make sure that restorin…
14 * 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…
18 …ned_write which may improve write throughput in case writing from multiple threads and WAL enabled.
25 …WAL (write-ahead log) as well as to the memtable(s) (one memtable per column family); We reuse the…
18 * Fix IOError on WAL write doesn't propagate to write group follower
36 …ility improvements -- we're now ignoring partially written tailing record to MANIFEST or WAL files.
45 …r --path to ldb tool. --path accepts the name of either MANIFEST, SST or a WAL file. Either --db o…
116 `WriteBatch` stores range tombstones in its buffer which are logged to the WAL and171 delete (optionally within a transaction) pattern. `DeleteRange` only logs to WAL172 and applies to memtable. Logging to WAL always `fflush`es, and optionally
173 echo WAL backup does not exist at ${wal_dir}.bak177 echo Restore WAL from ${wal_dir}.bak187 echo Save WAL to ${wal_dir}.bak
18 - 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"
239 * 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_dir280 * 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 follower912 * 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 …]
69 …orm writes and reads in cases when un-buffered access does not make sense such as WAL and MANIFEST.
135 TEST_F(DBWALTest, WAL) { in TEST_F() argument