AMashenkov commented on code in PR #4629: URL: https://github.com/apache/ignite-3/pull/4629#discussion_r1830982554
########## modules/sql-engine/src/main/java/org/apache/ignite/internal/sql/engine/exec/mapping/MappingServiceImpl.java: ########## @@ -409,4 +413,31 @@ public int hashCode() { return Objects.hash(planId, mapOnBackups); } } + + private static class DistributionHolder { + private final List<String> nodes; + private final Map<Integer, List<TokenizedAssignments>> assignmentsPerTable; + private final Map<String, List<String>> nodesPerView; Review Comment: ```suggestion private final Int2ObjectMap<List<String>> nodesPerView; ``` This also can be a int->obj 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: notifications-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org