Skip to content

Commit

Permalink
[fix](disk migrate) migrate ignore not exists tablet (#26779) (#27172)
Browse files Browse the repository at this point in the history
  • Loading branch information
yujun777 authored Nov 18, 2023
1 parent 2f30475 commit b6b12b5
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -965,6 +965,9 @@ private static void handleMigration(ListMultimap<TStorageMedium, Long> tabletMet
for (int i = 0; i < tabletMetaList.size(); i++) {
long tabletId = tabletIds.get(i);
TabletMeta tabletMeta = tabletMetaList.get(i);
if (tabletMeta == TabletInvertedIndex.NOT_EXIST_TABLET_META) {
continue;
}
// always get old schema hash(as effective one)
int effectiveSchemaHash = tabletMeta.getOldSchemaHash();
StorageMediaMigrationTask task = new StorageMediaMigrationTask(backendId, tabletId,
Expand Down

0 comments on commit b6b12b5

Please sign in to comment.