sashapolo commented on code in PR #5300: URL: https://github.com/apache/ignite-3/pull/5300#discussion_r1978861687
########## modules/partition-replicator/src/main/java/org/apache/ignite/internal/partition/replicator/PartitionReplicaLifecycleManager.java: ########## @@ -1432,6 +1455,25 @@ public void loadTableListenerToZoneReplica( resources.snapshotStorageFactory().addMvPartition(tablePartitionId.tableId(), partitionMvStorageAccess); } + /** + * Load a new table partition listener to the zone replica. + * + * @param zonePartitionId Zone partition id. + * @param tableId Table's identifier. + */ + public void unloadTableResourcesFromZoneReplica( + ZonePartitionId zonePartitionId, + int tableId + ) { + ZonePartitionResources resources = zoneResourcesManager.getZonePartitionResources(zonePartitionId); + + resources.replicaListenerFuture().thenAccept(zoneReplicaListener -> zoneReplicaListener.removeTableReplicaListener(tableId)); Review Comment: Sorry, I meant to move all related code into a method, not just this line =) -- 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