This is an automated email from the ASF dual-hosted git repository. gavinchou 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 69222f20794 [chore](log) Remove some unnecessary log (#40975) 69222f20794 is described below commit 69222f2079473da934ba6c4007a5287a96989215 Author: zhiqiang <seuhezhiqi...@163.com> AuthorDate: Sat Sep 21 11:26:15 2024 +0800 [chore](log) Remove some unnecessary log (#40975) Remove warning log of profile persist. --- fe/fe-core/src/main/java/org/apache/doris/common/profile/Profile.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/fe/fe-core/src/main/java/org/apache/doris/common/profile/Profile.java b/fe/fe-core/src/main/java/org/apache/doris/common/profile/Profile.java index 88fd3178794..8be381cf7f3 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/common/profile/Profile.java +++ b/fe/fe-core/src/main/java/org/apache/doris/common/profile/Profile.java @@ -490,7 +490,9 @@ public class Profile { boolean hasReportingProfile = false; if (this.executionProfiles.isEmpty()) { - LOG.warn("Profile {} has no execution profile, it is abnormal", id); + // Query finished, but no execution profile. + // 1. Query is executed on FE. + // 2. Not a SELECT query, just a DDL. return false; } --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org