dataroaring commented on code in PR #48564: URL: https://github.com/apache/doris/pull/48564#discussion_r1979325908
########## 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: It is serialized via gson, we should handle gson deserialization, otherwise, after gson deserialization, table2Group is not a concurrent hash map. -- 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