| /rocksdb-6.9/docs/_posts/ |
| D | 2015-07-23-dynamic-level.markdown | 23 …last level, the size of level will be equal as the size of last level before the compaction. On th… 26 …last level’s size is 1000GB, the same as the level’s size target? A user has to fine tune level si… 29 …last level. Suppose the level size multiplier to be 10, and the DB size is 200GB. The target size …
|
| D | 2015-04-22-integrating-rocksdb-with-mongodb-2.markdown | 10 Over the last couple of years, we have been busy integrating RocksDB with various services here at …
|
| D | 2016-01-29-compaction_pri.markdown | 22 …zes write amplification, because a file being picked covers a range whose last compaction time to … 34 …t to ignore them. Furthermore, the sooner we compact delete keys into the last level, the sooner t…
|
| D | 2016-04-26-rocksdb-4-5-1-released.markdown | 41 …* If options.max_write_buffer_number > 3, writes will be slowed down when writing to the last writ…
|
| D | 2019-03-08-format-version-4.markdown | 27 … restart point. Otherwise the format is delta-size = block handle size - size of last block handle.
|
| /rocksdb-6.9/db/ |
| D | deletefile_test.cc | 199 std::string first("0"), last("999999"); in TEST_F() local 203 Slice first_slice(first), last_slice(last); in TEST_F() 228 std::string first("0"), last("999999"); in TEST_F() local 232 Slice first_slice(first), last_slice(last); in TEST_F() 334 std::string first("0"), last("999999"); in TEST_F() local 338 Slice first_slice(first), last_slice(last); in TEST_F() 374 std::string first("0"), last("999999"); in TEST_F() local 378 Slice first_slice(first), last_slice(last); in TEST_F()
|
| D | db_io_failure_test.cc | 169 const int last = 2; in TEST_F() local 171 ASSERT_EQ(NumTableFilesAtLevel(last), 1); // foo=>bar is now in last level in TEST_F() 175 dbfull()->TEST_CompactRange(last, nullptr, nullptr); // Should fail in TEST_F() 193 dbfull()->TEST_CompactRange(last, nullptr, nullptr); // Should fail in TEST_F()
|
| D | write_thread.h | 90 explicit Iterator(Writer* w, Writer* last) in Iterator() 91 : writer(w), last_writer(last) {} in Iterator()
|
| D | db_test.cc | 1857 const int last = 2; in TEST_F() local 1858 MoveFilesToLevel(last, 1); in TEST_F() 1860 ASSERT_EQ(NumTableFilesAtLevel(last, 1), 1); in TEST_F() 1866 MoveFilesToLevel(last - 1, 1); in TEST_F() 1867 ASSERT_EQ(NumTableFilesAtLevel(last, 1), 1); in TEST_F() 1868 ASSERT_EQ(NumTableFilesAtLevel(last - 1, 1), 1); in TEST_F() 1891 const int last = 2; in TEST_F() local 1892 MoveFilesToLevel(last, 1); in TEST_F() 1894 ASSERT_EQ(NumTableFilesAtLevel(last, 1), 1); in TEST_F() 1900 MoveFilesToLevel(last - 1, 1); in TEST_F() [all …]
|
| /rocksdb-6.9/util/ |
| D | hash_map.h | 50 auto last = bucket.end() - 1; in Delete() local 51 if (it != last) { in Delete() 52 *it = *last; in Delete()
|
| /rocksdb-6.9/table/ |
| D | multiget_context.h | 206 const Iterator& last) { in Range() argument 209 end_ = last.index_; in Range()
|
| D | table_test.cc | 936 std::string last = data.rbegin()->first; in TestRandomAccess() local 937 model_iter = data.lower_bound(last); in TestRandomAccess()
|
| /rocksdb-6.9/docs/ |
| D | TEMPLATE-INFORMATION.md | 15 The third and last place is in the `_data/powered_by.yml` and `_data/powered_by_highlight.yml` file… 17 The last thing you'll want to do is setup your top level navigation bar. You can do this by editing…
|
| /rocksdb-6.9/docs/_sass/ |
| D | _tables.scss | 29 &:last-of-type {
|
| /rocksdb-6.9/utilities/transactions/ |
| D | write_prepared_txn_db.cc | 492 auto last = db_impl_->GetLastPublishedSequence(); // could be 0 in AddCommitted() local 494 if (LIKELY(evicted.commit_seq < last)) { in AddCommitted() 495 assert(last > 0); in AddCommitted() 498 std::min(evicted.commit_seq + INC_STEP_FOR_MAX_EVICTED, last - 1); in AddCommitted()
|
| D | write_prepared_transaction_test.cc | 163 std::atomic<size_t> last; in TEST() local 166 last = 0; in TEST() 176 last.store(seq); in TEST() 182 ROCKSDB_NAMESPACE::port::Thread([&heap, &prepared_mutex, &last, i]() { in TEST() 186 } while (last.load() < seq); in TEST()
|
| /rocksdb-6.9/utilities/ |
| D | env_librados.md | 33 // The last level dir name should match the dir name in prefix_pool_map
|
| /rocksdb-6.9/ |
| D | CMakeCache.txt | 682 //CMAKE_INSTALL_PREFIX during last run
|
| D | HISTORY.md | 17 … compaction starts from the first level with keys in the specified range until the last such level. 170 * Added a lightweight API GetCurrentWalFile() to get last live WAL filename and size. Meant to be u… 255 …stance by skipping write batches with older sequence numbers than the current last sequence number. 728 * Added Iterator::SeekForPrev(). This new API will seek to the last key that less than or equal to … 813 * If options.max_write_buffer_number > 3, writes will be slowed down when writing to the last write…
|
| /rocksdb-6.9/tools/block_cache_analyzer/ |
| D | block_cache_pysim.py | 1325 item = self.od.popitem(last=False) if self.od else None
|