This is an automated email from the ASF dual-hosted git repository. dataroaring pushed a commit to branch branch-2.0 in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-2.0 by this push: new b6b12b58569 [fix](disk migrate) migrate ignore not exists tablet (#26779) (#27172) b6b12b58569 is described below commit b6b12b585698fe492707b8363bcfd1dcec6ec473 Author: yujun <yu.jun.re...@gmail.com> AuthorDate: Sat Nov 18 09:35:13 2023 +0800 [fix](disk migrate) migrate ignore not exists tablet (#26779) (#27172) --- fe/fe-core/src/main/java/org/apache/doris/master/ReportHandler.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/fe/fe-core/src/main/java/org/apache/doris/master/ReportHandler.java b/fe/fe-core/src/main/java/org/apache/doris/master/ReportHandler.java index 7727bad0293..d04dfeca359 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/master/ReportHandler.java +++ b/fe/fe-core/src/main/java/org/apache/doris/master/ReportHandler.java @@ -965,6 +965,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, --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org