Hi vdpyatkov, I tried like this , problem still exists. The client code just
as below:
ClusterGroup rmts = getIgnite().cluster().forRemotes();
IgniteCompute compute = getIgnite().compute(rmts).withAsync();
compute.apply(new IgniteClosure<String, String>() {
@Override
public String apply(String o) {
return o;
}
}, Arrays.asList("Print words using runnable".split(" ")));
IgniteFuture future = compute.future();
future.cancel();
getIgnite().close();
--
View this message in context:
http://apache-ignite-users.70518.x6.nabble.com/Remote-Server-Thread-Not-exit-when-Job-finished-Cause-out-of-memory-tp8934p8947.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.