Looks ok except that the first query should also be local I guess. Also note that you used split adapter, so didn't actually map the jobs to nodes, leaving this to Ignite. This means that there is a chance some nodes will get more than one job, and some none of the jobs. Round robin balancing is used by default, so this should not happen, at least on stable topology, but theoretically there is no guarantee. Use map method instead to manually map jobs to nodes, or just use broadcast() method.
Jobs are executed in parallel in the public thread pool. -Val -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/EntryProcessor-for-cache-tp10432p10559.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.
