Cyrill commented on code in PR #5544: URL: https://github.com/apache/ignite-3/pull/5544#discussion_r2030825869
########## modules/table/src/main/java/org/apache/ignite/internal/table/distributed/disaster/DisasterRecoveryManager.java: ########## @@ -448,6 +452,112 @@ public CompletableFuture<Void> restartPartitions( } } + /** + * Returns states of partitions in the cluster. Result is a mapping of {@link ZonePartitionId} to the mapping + * between a node name and a partition state. + * + * @param zoneNames Names specifying zones to get partition states from. Case-sensitive, empty set means "all zones". + * @param nodeNames Names specifying nodes to get partition states from. Case-sensitive, empty set means "all nodes". + * @param partitionIds IDs of partitions to get states of. Empty set means "all partitions". + * @return Future with the mapping. + */ + public CompletableFuture<Map<ZonePartitionId, LocalZonePartitionStateByNode>> localZonePartitionStates( Review Comment: Done -- 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