For the ExecutorService Ignite returns, will it run multiple threads on each
node in the cluster, or will it execute each thread on a separate node in
the cluster?
For example, Let's say I did the following on a three node cluster
ExecutorService exec = ignite.executorService();
exec.submit(new IgniteRunnable() { ... }); // one
exec.submit(new IgniteRunnable() { ... }); // two
exec.submit(new IgniteRunnable() { ... }); // three
Would it create 3 threads on each node in the cluster for a total of 9
threads, or would it create 3 jobs with 1 job per node?
--
View this message in context:
http://apache-ignite-users.70518.x6.nabble.com/ExecutorService-clarification-tp805.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.