Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions fe/fe-core/src/main/java/org/apache/doris/catalog/Tablet.java
Original file line number Diff line number Diff line change
Expand Up @@ -318,16 +318,14 @@ public List<Replica> getQueryableReplicas(long visibleVersion, Map<Long, Set<Lon
if (replica.isBad()) {
continue;
}

if (replica.getLastFailedVersion() > 0) {
mayMissingVersionReplica.add(replica);
continue;
}

if (!replica.checkVersionCatchUp(visibleVersion, false)) {
notCatchupReplica.add(replica);
continue;
}
if (replica.getLastFailedVersion() > 0) {
mayMissingVersionReplica.add(replica);
continue;
}

Set<Long> thisBeAlivePaths = backendAlivePathHashs.get(replica.getBackendIdWithoutException());
ReplicaState state = replica.getState();
Expand Down
Loading