csun5285 commented on code in PR #31488: URL: https://github.com/apache/doris/pull/31488#discussion_r1507196225
########## be/src/olap/cumulative_compaction_time_series_policy.cpp: ########## @@ -47,8 +50,13 @@ uint32_t TimeSeriesCumulativeCompactionPolicy::calc_cumulative_compaction_score( continue; } else { // collect the rowsets of cumulative part - total_size += rs_meta->total_disk_size(); score += rs_meta->get_compaction_score(); + if (rs_meta->compaction_level() == 0) { + level0_total_size += rs_meta->total_disk_size(); + level0_score += rs_meta->get_compaction_score(); + } else { + checked_rs_metas.push_back(rs_meta); Review Comment: 这个函数只是计算下分数,可以在这直接计算 level1 是否满足条件 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org