Load balancing SPI defines to which node a compute job (i.e. a closure or part of ComputeTask) will be sent. SPI is always called from Ignite's internals, not from your code, so you don't need to do anything specific. Once RRLB is provided in the configuration, it will be used to load balance your computations. for example, if you have 3 nodes (1, 2 and 3) and you execute five jobs in a row, the will be automatically balanced like this:
job 1 -> node 1 job 2 -> node 2 job 3 -> node 3 job 4 -> node 1 job 5 -> node 2 -Val -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Help-Load-Balancing-tp8716p8745.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.
