This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push: new ff935ca1a0 [enhancement](chore) remove debug log which is really too frequent #13909 ff935ca1a0 is described below commit ff935ca1a0d774dd8ecc9874bd83718c2fb04c98 Author: camby <104178...@qq.com> AuthorDate: Thu Nov 3 19:32:44 2022 +0800 [enhancement](chore) remove debug log which is really too frequent #13909 Co-authored-by: cambyzju <zhuxiaol...@baidu.com> --- be/src/olap/tablet_manager.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/be/src/olap/tablet_manager.cpp b/be/src/olap/tablet_manager.cpp index 7580b1aed3..4a8fc9f1d1 100644 --- a/be/src/olap/tablet_manager.cpp +++ b/be/src/olap/tablet_manager.cpp @@ -663,10 +663,6 @@ TabletSharedPtr TabletManager::find_best_tablet_to_compaction( last_failure_ms = tablet_ptr->last_base_compaction_failure_time(); } if (now_ms - last_failure_ms <= config::min_compaction_failure_interval_sec * 1000) { - VLOG_DEBUG << "Too often to check compaction, skip it. " - << "compaction_type=" << compaction_type_str - << ", last_failure_time_ms=" << last_failure_ms - << ", tablet_id=" << tablet_ptr->tablet_id(); continue; } --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org