|
14 | 14 |
|
15 | 15 | use std::sync::Arc;
|
16 | 16 |
|
| 17 | +use risingwave_common::config::default::compaction_config; |
17 | 18 | use risingwave_pb::hummock::hummock_version::Levels;
|
18 | 19 | use risingwave_pb::hummock::{CompactionConfig, InputLevel, LevelType, OverlappingLevel};
|
19 | 20 |
|
@@ -54,10 +55,33 @@ impl CompactionPicker for IntraCompactionPicker {
|
54 | 55 | if let Some(ret) =
|
55 | 56 | self.pick_whole_level(l0, &level_handlers[0], vnode_partition_count, stats)
|
56 | 57 | {
|
| 58 | + if ret.input_levels.len() < 2 { |
| 59 | + tracing::error!( |
| 60 | + ?ret, |
| 61 | + vnode_partition_count, |
| 62 | + "pick_whole_level failed to pick enough levels" |
| 63 | + ); |
| 64 | + return None; |
| 65 | + } |
| 66 | + |
57 | 67 | return Some(ret);
|
58 | 68 | }
|
59 | 69 |
|
60 |
| - self.pick_l0_intra(l0, &level_handlers[0], vnode_partition_count, stats) |
| 70 | + if let Some(ret) = self.pick_l0_intra(l0, &level_handlers[0], vnode_partition_count, stats) |
| 71 | + { |
| 72 | + if ret.input_levels.len() < 2 { |
| 73 | + tracing::error!( |
| 74 | + ?ret, |
| 75 | + vnode_partition_count, |
| 76 | + "pick_l0_intra failed to pick enough levels" |
| 77 | + ); |
| 78 | + return None; |
| 79 | + } |
| 80 | + |
| 81 | + return Some(ret); |
| 82 | + } |
| 83 | + |
| 84 | + None |
61 | 85 | }
|
62 | 86 | }
|
63 | 87 |
|
@@ -144,7 +168,10 @@ impl IntraCompactionPicker {
|
144 | 168 | self.config.level0_max_compact_file_number,
|
145 | 169 | overlap_strategy.clone(),
|
146 | 170 | self.developer_config.enable_check_task_level_overlap,
|
147 |
| - self.config.max_l0_compact_level_count as usize, |
| 171 | + self.config |
| 172 | + .max_l0_compact_level_count |
| 173 | + .unwrap_or(compaction_config::max_l0_compact_level_count()) |
| 174 | + as usize, |
148 | 175 | );
|
149 | 176 |
|
150 | 177 | let l0_select_tables_vec = non_overlap_sub_level_picker
|
@@ -357,7 +384,7 @@ impl WholeLevelCompactionPicker {
|
357 | 384 | table_infos: next_level.table_infos.clone(),
|
358 | 385 | });
|
359 | 386 | }
|
360 |
| - if !select_level_inputs.is_empty() { |
| 387 | + if select_level_inputs.len() > 1 { |
361 | 388 | let vnode_partition_count =
|
362 | 389 | if select_input_size > self.config.sub_level_max_compaction_bytes / 2 {
|
363 | 390 | partition_count
|
|
0 commit comments