This is an automated email from the ASF dual-hosted git repository. kxiao pushed a commit to branch branch-2.0 in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-2.0 by this push: new b1955a9111a [chore](ColdHeatSeparation) Reduce the frequency of log following read failure #32706 (#32711) b1955a9111a is described below commit b1955a9111a8dba35c9919f7b703e1c384cc4711 Author: AlexYue <yj976240...@gmail.com> AuthorDate: Tue Mar 26 15:22:46 2024 +0800 [chore](ColdHeatSeparation) Reduce the frequency of log following read failure #32706 (#32711) --- be/src/olap/olap_server.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/be/src/olap/olap_server.cpp b/be/src/olap/olap_server.cpp index e8d735d1873..2a9f911ed96 100644 --- a/be/src/olap/olap_server.cpp +++ b/be/src/olap/olap_server.cpp @@ -1206,8 +1206,8 @@ void StorageEngine::_cold_data_compaction_producer_callback() { tablet_submitted.erase(t->tablet_id()); } if (!st.ok()) { - LOG(WARNING) << "failed to cooldown. tablet_id=" << t->tablet_id() - << " err=" << st; + LOG_EVERY_N(WARNING, 5) + << "failed to cooldown. tablet_id=" << t->tablet_id() << " err=" << st; } }); } --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org