Hi, I have a sever node and a thick client node running. I am trying to submit ignite compute job from client node to server node but it doesn't work.
ClusterGroup grp = ignite.cluster().forServers()
IgniteCompute ignieCompute = ignite.compute(grp);
igniteCompute.run(() -> System.out.println("Task Executed"));
Sysout never printed on console and client keeps running. If I change it to
server mode, tasks completed immediately.
Can someone help me understand if I am missing some configuration?
