liaoxin01 commented on code in PR #65049:
URL: https://github.com/apache/doris/pull/65049#discussion_r3526781560


##########
fe/fe-core/src/main/java/org/apache/doris/cloud/load/CloudRoutineLoadManager.java:
##########
@@ -54,7 +54,8 @@ protected List<Long> getAvailableBackendIds(long jobId) 
throws LoadException {
         return ((CloudSystemInfoService) Env.getCurrentSystemInfo())
                 .getBackendsByClusterName(routineLoadJob.getCloudCluster())
                 .stream()
-                .filter(Backend::isAlive)
+                .filter(Backend::isLoadAvailable)
+                .filter(backend -> !backend.isDecommissioned() && 
!backend.isDecommissioning())

Review Comment:
   这个是CloudRoutineLoadManager,只会给cloud用



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


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

Reply via email to