yujun777 commented on code in PR #49999: URL: https://github.com/apache/doris/pull/49999#discussion_r2041291553
########## fe/fe-core/src/main/java/org/apache/doris/catalog/Tablet.java: ########## @@ -314,12 +314,7 @@ public List<Replica> getQueryableReplicas(long visibleVersion, Map<Long, Set<Lon continue; } - // Skip the missing version replica - if (replica.getLastFailedVersion() > 0 && !allowFailedVersion) { - continue; - } - - if (!replica.checkVersionCatchUp(visibleVersion, false)) { Review Comment: change to : if (!replica.checkVersionCatchUp() && !allowMissingVersions) { -- 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: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org