deardeng commented on code in PR #48564: URL: https://github.com/apache/doris/pull/48564#discussion_r1980638295
########## fe/fe-core/src/main/java/org/apache/doris/catalog/ColocateTableIndex.java: ########## @@ -176,7 +176,7 @@ public static boolean isGlobalGroupName(String groupName) { private Multimap<GroupId, Long> group2Tables = ArrayListMultimap.create(); // table_id -> group_id @SerializedName(value = "table2Group") - private Map<Long, GroupId> table2Group = Maps.newHashMap(); + private Map<Long, GroupId> table2Group = Maps.newConcurrentMap(); Review Comment: ColocateTableIndex not use gson serialization, ColocateTableIndex still use the old way of serialization @LiBinfeng-01 add this `@SerializedName(value = "table2Group") ` just for planner minidump. So there's no problem here -- 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