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 d8674e3 commit 672eec8Copy full SHA for 672eec8
src/compaction/leveled/mod.rs
@@ -15,9 +15,6 @@ use crate::{
15
HashSet, TableId,
16
};
17
18
-#[doc(hidden)]
19
-pub const NAME: &str = "LeveledCompaction";
20
-
21
/// Tries to find the most optimal compaction set from one level into the other.
22
fn pick_minimal_compaction(
23
curr_run: &Run<Table>,
@@ -104,6 +101,9 @@ fn pick_minimal_compaction(
104
101
}
105
102
106
103
+#[doc(hidden)]
+pub const NAME: &str = "LeveledCompaction";
+
107
/// Leveled compaction strategy (LCS)
108
///
109
/// When a level reaches some threshold size, parts of it are merged into overlapping tables in the next level.
0 commit comments