Hi, I have created multiple ignite runnable task by extending IgniteRunnable nad IgniteCallable interface. I submitting these tasks to the primary data node using "ignite.compute().withNoFailover().affinityRun()" method.
I have not set max failover attempt, so I think default max failover attempt will be 5. I have kept the back count as 1. What happens when the primary node executing this task goes down? In this case does ignite move this task to the backup node and execute it on back node? When the node goes down ignite starts rebalancing the cluster. In this case how this task will be executed? Does ignite waits for rebalancing process to complete and then execute this task? Can some one please explain this in detail? Thanks, Prasad
