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

dataroaring 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 03eeabc971e [fix](job) allow job can auto resume when meet can not 
find be error (#53848)
03eeabc971e is described below

commit 03eeabc971e8f3faa90c1fdd08bdbe7fad1846e6
Author: hui lai <lai...@selectdb.com>
AuthorDate: Sat Jul 26 15:48:55 2025 +0800

    [fix](job) allow job can auto resume when meet can not find be error 
(#53848)
    
    ### What problem does this PR solve?
    
    Allow routine load job can auto resume when meet can not find be error
    to keep stable.
---
 .../main/java/org/apache/doris/load/routineload/RoutineLoadManager.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/fe/fe-core/src/main/java/org/apache/doris/load/routineload/RoutineLoadManager.java
 
b/fe/fe-core/src/main/java/org/apache/doris/load/routineload/RoutineLoadManager.java
index efe13f8ec4c..3e69a075a62 100644
--- 
a/fe/fe-core/src/main/java/org/apache/doris/load/routineload/RoutineLoadManager.java
+++ 
b/fe/fe-core/src/main/java/org/apache/doris/load/routineload/RoutineLoadManager.java
@@ -536,7 +536,7 @@ public class RoutineLoadManager implements Writable {
                 String msg = "no available BE found for job " + jobId
                         + "please check the BE status and user's cluster or 
tags";
                 job.updateState(RoutineLoadJob.JobState.PAUSED,
-                        new ErrorReason(InternalErrorCode.MANUAL_PAUSE_ERR, 
msg), false /* not replay */);
+                        new ErrorReason(InternalErrorCode.INTERNAL_ERR, msg), 
false /* not replay */);
             }
             return -1L;
         }


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to