| /rocksdb-6.9/file/ |
| D | file_util.cc | 114 bool same = false; in IsWalDirSameAsDBPath() local 117 db_options->db_paths[0].path, &same); in IsWalDirSameAsDBPath() 119 same = db_options->wal_dir == db_options->db_paths[0].path; in IsWalDirSameAsDBPath() 121 return same; in IsWalDirSameAsDBPath()
|
| /rocksdb-6.9/docs/_posts/ |
| D | 2015-07-23-dynamic-level.markdown | 14 …ism and more configurable options to it but the main algorithm stayed the same, until we recently … 17 …same size multiplier. For example, you can set target size of level 1 to be 1GB, and size multipli… 23 …stable or grows slowly over time. This means updates will add roughly the same or little more data… 26 …re is a catch here: how to make sure the last level’s size is 1000GB, the same as the level’s size…
|
| D | 2019-03-08-format-version-4.markdown | 8 …t_version` is 2, the format of index and data blocks are the same: index blocks use the same key f… 12 … would result in higher hit rate for data and filter blocks, or offer the same performance with a …
|
| D | 2017-05-14-core-local-stats.markdown | 40 …cribed above. Even though updates to a given value are always made by the same thread, atomics are… 46 Update benchmark setup is same as before. CPU overhead improved 7.8x compared to global atomics, co… 81 Update benchmark setup is same as before. CPU overhead worsened ~23% compared to thread-local, whil… 99 Query latency is measured same as before with times in milliseconds. Average latency improved by 6.…
|
| D | 2015-02-27-write-batch-with-index.markdown | 14 …, you cannot get the updated value from RocksDB previously written by the same transaction (read-y… 16 …same names. In the end, they call `db->Write(write_batch)` to atomically update all those batched …
|
| D | 2014-06-27-avoid-expensive-locks-in-get.markdown | 32 …r version number against the global super version number. If they are the same, the cached super v… 85 Please post an example of reading the same rocksdb concurrently. 88 try and open the same rocksdb for reading, only one of the open requests
|
| D | 2019-08-15-unordered-write.markdown | 14 - Read-your-own writes: When a write thread returns to the user, a subsequent read by the same thre… 23 To get the same guarantees as vanilla RocksdB:
|
| D | 2016-01-29-compaction_pri.markdown | 14 …ted multi-thread compaction in RocksDB by picking multiple files from the same level and compact t… 20 …with 12 L3 files, we'll need to rewrite about 1200MB to get a file of the same size out of L2. It … 24 We created a compaction priority **kOldestSmallestSeqFirst** for the same effect. With this mode, w…
|
| D | 2014-06-27-rocksdb-3-2-release.markdown | 14 …* PlainTable now supports a new key encoding: for keys of the same prefix, the prefix is only writ…
|
| D | 2017-12-19-write-prepared-txn.markdown | 25 …sequence numbers in RocksDB to tag all the key/values in the same write batch with the same sequen…
|
| D | 2014-05-14-lock.markdown | 59 Please post an example of reading the same rocksdb concurrently. 62 try and open the same rocksdb for reading, only one of the open requests 69 1. create a separate directory on the same host for a snapshot of the DB.
|
| D | 2014-04-07-rocksdb-2-8-release.markdown | 27 …* Added a V2 compaction filter interface. It buffers the kv-pairs sharing the same key prefix, pro…
|
| D | 2017-07-25-rocksdb-5-6-1-released.markdown | 9 * Scheduling flushes and compactions in the same thread pool is no longer supported by setting `max…
|
| D | 2017-01-06-rocksdb-5-0-1-released.markdown | 15 …ng RocksDB instance. Alternatively DB::GetLatestSequenceNumber() can be used to get the same value.
|
| D | 2017-05-26-rocksdb-5-4-5-released.markdown | 19 …so requires two-level indexing to be enabled. Number of partitions is the same as the number of pa…
|
| D | 2015-11-10-use-checkpoints-for-efficient-snapshots.markdown | 15 …en RocksDB database in the specified directory. If the snapshot is on the same filesystem as the o…
|
| D | 2016-04-26-rocksdb-4-5-1-released.markdown | 54 …* RocksDB will now persist options under the same directory as the RocksDB database on successful …
|
| D | 2014-06-23-plaintable-a-new-file-format.markdown | 22 …d as you would see with a nicely-designed hash table, but they are of the same order of magnitude,…
|
| /rocksdb-6.9/ |
| D | RocksDBConfigVersion.cmake | 6 # the requested version string are exactly the same and it sets 8 # but only if the requested major version is the same as the current one. 60 # check that the installed version has the same 32/64bit-ness as the one which is currently searchi…
|
| D | WINDOWS_PORT.md | 32 At the same time it generates Visual Studio projects that are both usable from a command line and I… 66 …licate them within windows env. This has proven to work very well. At the same time for anyone who… 75 …s files at will even though they may be opened with another handle at the same time. We had to rel… 80 …thread-exit we added a limited amount of windows specific code within the same thread_local.cc fil… 96 All of the benchmarks are run on the same set of machines. Here are the details of the test setup: 104 * The parameters used, unless specified, were exactly the same as published in the GitHub Wiki page…
|
| D | HISTORY.md | 62 * Fix a bug on fractional cascading index when multiple files at the same level contain the same sm… 74 * MultiGet() can use IO Uring to parallelize read from the same SST file. This featuer is by defaul… 111 * Setting options.ttl for universal compaction now has the same meaning as setting periodic_compact… 196 …prefetched and pinned in the cache (based on the customer's settings) the same way as index and fi… 203 …cache: make reads with newer snapshots than data in an SST file share the same cache key, except i… 244 * Reduce binary search when iterator reseek into the same data block. 265 …mpaction for Level style compaction. Files are re-compacted periodically and put in the same level. 304 * Add initial support for multiple db instances sharing the same data in single-writer, multi-reade… 374 * Fix the bug that WriteBatchWithIndex's SeekForPrev() doesn't see the entries with the same key. 822 * RocksDB will now persist options under the same directory as the RocksDB database on successful D… [all …]
|
| /rocksdb-6.9/db/ |
| D | repair.cc | 268 bool same = false; in FindFiles() local 269 Status status = env_->AreFilesSame(db_options_.wal_dir, dbname_, &same); in FindFiles() 271 same = db_options_.wal_dir == dbname_; in FindFiles() 277 if (!same) { in FindFiles()
|
| /rocksdb-6.9/docs/doc-type-examples/ |
| D | top-level-example.md | 8 … the blog or docs collections that can be added at a top-level (i.e., the same level as `index.md`…
|
| /rocksdb-6.9/java/ |
| D | HISTORY-JAVA.md | 37 * Added basic Java binding for rocksdb::Env such that multiple RocksDB can share the same thread po…
|
| /rocksdb-6.9/CMakeFiles/Export/7a006447cadce6044e9a8143a913fd66/ |
| D | RocksDBTargets.cmake | 111 # been exported from the same project but in a separate export set.
|