chore: turn full cold compaction on (#5728)
parent
aaec5104d6
commit
61075d57e2
|
@ -175,8 +175,7 @@ pub async fn run_compactor_once(compactor: Arc<Compactor>) {
|
||||||
}
|
}
|
||||||
|
|
||||||
debug!("start cold cycle");
|
debug!("start cold cycle");
|
||||||
compacted_partitions +=
|
compacted_partitions += cold::compact(Arc::clone(&compactor), true).await;
|
||||||
cold::compact(Arc::clone(&compactor), false /* not do full compact */).await;
|
|
||||||
|
|
||||||
if compacted_partitions == 0 {
|
if compacted_partitions == 0 {
|
||||||
// sleep for a second to avoid a busy loop when the catalog is polled
|
// sleep for a second to avoid a busy loop when the catalog is polled
|
||||||
|
|
Loading…
Reference in New Issue