rpuch commented on code in PR #6538:
URL: https://github.com/apache/ignite-3/pull/6538#discussion_r2318948402


##########
modules/compute/src/main/java/org/apache/ignite/internal/compute/IgniteComputeImpl.java:
##########
@@ -266,6 +270,16 @@ public <T, R> CompletableFuture<BroadcastExecution<R>> 
submitAsync(
         throw new IllegalArgumentException("Unsupported job target: " + 
target);
     }
 
+    private static Set<InternalClusterNode> 
internalNodesFromPublicNodes(Set<ClusterNode> nodes) {
+        return nodes.stream()
+                .map(InternalClusterNodeImpl::fromPublicClusterNode)
+                .collect(Collectors.toSet());
+    }
+
+    private @Nullable InternalClusterNode findNodeByConsistentId(ClusterNode 
clusterNode) {

Review Comment:
   Yes, we resolve nodes by consistentIds taken from ClusterNode instances



-- 
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]

Reply via email to