Home
last modified time | relevance | path

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

/rocksdb-6.9/docs/_posts/
D2015-07-23-dynamic-level.markdown23last level, the size of level will be equal as the size of last level before the compaction. On th…
26last level’s size is 1000GB, the same as the level’s size target? A user has to fine tune level si…
29last level. Suppose the level size multiplier to be 10, and the DB size is 200GB. The target size …
D2015-04-22-integrating-rocksdb-with-mongodb-2.markdown10 Over the last couple of years, we have been busy integrating RocksDB with various services here at …
D2016-01-29-compaction_pri.markdown22 …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…
D2016-04-26-rocksdb-4-5-1-released.markdown41 …* If options.max_write_buffer_number > 3, writes will be slowed down when writing to the last writ…
D2019-03-08-format-version-4.markdown27 … restart point. Otherwise the format is delta-size = block handle size - size of last block handle.
/rocksdb-6.9/db/
Ddeletefile_test.cc199 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()
Ddb_io_failure_test.cc169 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()
Dwrite_thread.h90 explicit Iterator(Writer* w, Writer* last) in Iterator()
91 : writer(w), last_writer(last) {} in Iterator()
Ddb_test.cc1857 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/
Dhash_map.h50 auto last = bucket.end() - 1; in Delete() local
51 if (it != last) { in Delete()
52 *it = *last; in Delete()
/rocksdb-6.9/table/
Dmultiget_context.h206 const Iterator& last) { in Range() argument
209 end_ = last.index_; in Range()
Dtable_test.cc936 std::string last = data.rbegin()->first; in TestRandomAccess() local
937 model_iter = data.lower_bound(last); in TestRandomAccess()
/rocksdb-6.9/docs/
DTEMPLATE-INFORMATION.md15 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.scss29 &:last-of-type {
/rocksdb-6.9/utilities/transactions/
Dwrite_prepared_txn_db.cc492 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()
Dwrite_prepared_transaction_test.cc163 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/
Denv_librados.md33 // The last level dir name should match the dir name in prefix_pool_map
/rocksdb-6.9/
DCMakeCache.txt682 //CMAKE_INSTALL_PREFIX during last run
DHISTORY.md17 … 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/
Dblock_cache_pysim.py1325 item = self.od.popitem(last=False) if self.od else None