korlov42 commented on code in PR #1191:
URL: https://github.com/apache/ignite-3/pull/1191#discussion_r1003281223
##########
modules/table/src/main/java/org/apache/ignite/internal/table/distributed/TableManager.java:
##########
@@ -241,6 +253,9 @@ public class TableManager extends Producer<TableEvent,
TableEventParameters> imp
/** Resolver that resolves a network address to cluster node. */
private final Function<NetworkAddress, ClusterNode> clusterNodeResolver;
+ private final Map<UUID, Map<UUID, IndexStorageAdapterFactory>>
indexStorageAdapterFactories = new ConcurrentHashMap<>();
Review Comment:
I don't think so. These collections are updated in `TableManager` and
accessed in `PartitionListener` and `PartitionReplicaListener` and can't be
reached from `TableImpl`. So, why do you think `TableImpl` is a better place?
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]