Home
last modified time | relevance | path

Searched refs:bounds (Results 1 – 4 of 4) sorted by relevance

/rocksdb-6.9/db/compaction/
Dcompaction_job.cc442 std::vector<Slice> bounds; in GenSubcompactionBoundaries() local
462 bounds.emplace_back(flevel->files[i].smallest_key); in GenSubcompactionBoundaries()
463 bounds.emplace_back(flevel->files[i].largest_key); in GenSubcompactionBoundaries()
468 bounds.emplace_back(flevel->files[0].smallest_key); in GenSubcompactionBoundaries()
476 bounds.emplace_back(flevel->files[i].smallest_key); in GenSubcompactionBoundaries()
483 std::sort(bounds.begin(), bounds.end(), in GenSubcompactionBoundaries()
489 bounds.erase( in GenSubcompactionBoundaries()
490 std::unique(bounds.begin(), bounds.end(), in GenSubcompactionBoundaries()
495 bounds.end()); in GenSubcompactionBoundaries()
505 for (auto it = bounds.begin();;) { in GenSubcompactionBoundaries()
[all …]
/rocksdb-6.9/db/
Drange_del_aggregator_test.cc447 const auto& bounds = iter_bounds[i]; in TEST_F() local
451 range_del_agg.AddTombstones(std::move(input_iter), &bounds.first, in TEST_F()
452 &bounds.second); in TEST_F()
/rocksdb-6.9/docs/_posts/
D2017-06-26-17-level-based-changes.markdown10 RocksDB provides an option to limit the number of L0 files, which bounds read-amplification. Since …
/rocksdb-6.9/
DHISTORY.md20 * Basic support for user timestamp in iterator. Seek/SeekToFirst/Next and lower/upper bounds are su…