gavinchou commented on code in PR #59255:
URL: https://github.com/apache/doris/pull/59255#discussion_r2639669592
##########
fe/fe-core/src/main/java/org/apache/doris/load/DeleteJob.java:
##########
@@ -352,6 +352,11 @@ public void dispatch() throws Exception {
for (Replica replica : tablet.getReplicas()) {
long replicaId = replica.getId();
long backendId = replica.getBackendId();
+ //skip the task dispatch when replica backend has
been dropped or decommissioned
+ if
(!Env.getCurrentSystemInfo().checkBackendOnline(backendId)){
Review Comment:
what if all backends are not available? because we may not have any alive
backend after sending "delete" job to a BE.
--
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]