Hi, IgniteCompute#affinityCall is executing in the node where the primary partition (or primary partition of key) stored. Look at it javadoc: /** * Executes given job on the node where partition is located (the partition is primary on the node) ... In other word only one node in whole cluster at one time can execute IgniteCompute#affinityCall (only one primary partition could be found in a cluster for specific key/partition).
Why are you want execute IgniteCompute#affinityCall on specific group? If you want to execute a job in particular ClusterGroup, you can use IgniteCompute#call. -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Cluster-Groups-with-Affinity-Behaviour-tp11952p11976.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.
