This is an automated email from the ASF dual-hosted git repository.

yiguolei pushed a commit to branch branch-4.1
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/branch-4.1 by this push:
     new 51bb0231be5 branch-4.1: [improvement](load) print fragment id and 
query id when progress manager meets error #64857 (#65179)
51bb0231be5 is described below

commit 51bb0231be56d94092af9076fb57716b940e0eea
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Fri Jul 3 14:05:17 2026 +0800

    branch-4.1: [improvement](load) print fragment id and query id when 
progress manager meets error #64857 (#65179)
    
    Cherry-picked from #64857
    
    Co-authored-by: yiguolei <[email protected]>
---
 .../src/main/java/org/apache/doris/load/loadv2/ProgressManager.java   | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git 
a/fe/fe-core/src/main/java/org/apache/doris/load/loadv2/ProgressManager.java 
b/fe/fe-core/src/main/java/org/apache/doris/load/loadv2/ProgressManager.java
index c0de94062ff..a2d56191f53 100644
--- a/fe/fe-core/src/main/java/org/apache/doris/load/loadv2/ProgressManager.java
+++ b/fe/fe-core/src/main/java/org/apache/doris/load/loadv2/ProgressManager.java
@@ -17,6 +17,7 @@
 
 package org.apache.doris.load.loadv2;
 
+import org.apache.doris.common.util.DebugUtil;
 import org.apache.doris.thrift.TUniqueId;
 
 import com.google.common.collect.HashBasedTable;
@@ -56,7 +57,8 @@ public class ProgressManager {
         if (progress != null) {
             progress.updateFinishedScanNums(queryId, fragmentId, 
finishedScannerNum);
         } else {
-            LOG.warn("progress[" + id + "] missing meta information");
+            LOG.warn("progress id {} missing meta information, queryId {}, 
fragmentId {}",
+                    id, DebugUtil.printId(queryId), 
DebugUtil.printId(fragmentId));
         }
     }
 


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to