[fix](disk migrate) migrate ignore not exists tablet (#26779)

This commit is contained in:
yujun
2023-11-12 18:04:33 +08:00
committed by GitHub
parent 66054a5c78
commit b2dd58a666

View File

@ -979,6 +979,9 @@ public class ReportHandler extends Daemon {
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,