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 2071c3823a5 [improvement](load) print fragment id and query id when 
progress manager meets error (#64857)
2071c3823a5 is described below

commit 2071c3823a53cd7be39b821980a30bf13a6763fc
Author: yiguolei <[email protected]>
AuthorDate: Thu Jul 2 16:08:23 2026 +0800

    [improvement](load) print fragment id and query id when progress manager 
meets error (#64857)
    
    ### What problem does this PR solve?
    
    Issue Number: close #xxx
    
    Related PR: #xxx
    
    Problem Summary:
    
    There are many such error message is fe.log, but could not find query id
    related with it, so that I add more info in the log.
    [ProgresslManager.updateProgress(:59] progress[1782284300560 mising meta
    infomation
    ### Release note
    
    None
    
    ### Check List (For Author)
    
    - Test <!-- At least one of them must be included. -->
        - [ ] Regression test
        - [ ] Unit Test
        - [ ] Manual test (add detailed scripts or steps below)
        - [ ] No need to test or manual test. Explain why:
    - [ ] This is a refactor/code format and no logic has been changed.
            - [ ] Previous test can cover this change.
            - [ ] No code files have been changed.
            - [ ] Other reason <!-- Add your reason?  -->
    
    - Behavior changed:
        - [ ] No.
        - [ ] Yes. <!-- Explain the behavior change -->
    
    - Does this need documentation?
        - [ ] No.
    - [ ] Yes. <!-- Add document PR link here. eg:
    https://github.com/apache/doris-website/pull/1214 -->
    
    ### Check List (For Reviewer who merge this PR)
    
    - [ ] Confirm the release note
    - [ ] Confirm test cases
    - [ ] Confirm document
    - [ ] Add branch pick label <!-- Add branch pick label that this PR
    should merge into -->
---
 .../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