We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc8063c commit 31e71fdCopy full SHA for 31e71fd
mini-lsm-mvcc/src/compact/tiered.rs
@@ -90,7 +90,8 @@ impl TieredCompactionController {
90
.take(id + 1)
91
.cloned()
92
.collect::<Vec<_>>(),
93
- bottom_tier_included: id + 1 >= snapshot.levels.len(),
+ // Size ratio trigger will never include the bottom level
94
+ bottom_tier_included: false,
95
});
96
}
97
mini-lsm/src/compact/tiered.rs
@@ -90,6 +90,7 @@ impl TieredCompactionController {
bottom_tier_included: false,
0 commit comments