feat: Remove the manual compaction triggering

This commit is contained in:
Clément Renault 2019-01-25 16:05:56 +01:00
parent fbc698567a
commit 94d357985f
No known key found for this signature in database
GPG Key ID: 0151CDAB43460DAE

View File

@ -163,13 +163,6 @@ impl Database {
let _ = result?;
info!("ingesting update file took {}", elapsed);
let (elapsed, _) = elapsed::measure_time(|| {
// Compacting to trigger the merge operator only one time
// while ingesting the update and not each time searching
db.compact_range(Some(DATA_INDEX), Some(DATA_INDEX));
});
info!("compacting index range took {}", elapsed);
Snapshot::new(db.clone())
};