1
0
mirror of https://github.com/Zygo/bees.git synced 2025-06-16 17:46:16 +02:00

Revert "context: add experimental code for avoiding tiny extents"

because this problem is better solved elsewhere.

This reverts commit 11fabd66a8.
This commit is contained in:
Zygo Blaxell
2024-11-24 20:16:46 -05:00
parent 90d7075358
commit 30a4fb52cb
2 changed files with 0 additions and 10 deletions

View File

@ -300,15 +300,6 @@ BeesContext::scan_one_extent(const BeesFileRange &bfr, const Extent &e)
BEESTRACE("scan extent " << e);
BEESCOUNT(scan_extent);
// EXPERIMENT: Don't bother with tiny extents unless they are the entire file.
// We'll take a tiny extent at BOF or EOF but not in between.
if (e.begin() && e.size() < 128 * 1024 && e.end() != Stat(bfr.fd()).st_size) {
BEESCOUNT(scan_extent_tiny);
// This doesn't work properly with the current architecture,
// so we don't do an early return here.
// return bfr;
}
// We keep moving this method around
auto m_ctx = shared_from_this();