1. How can disable for node to download classes from driver? If some class is missing, I would like for node to throw NoClassDefFound, instead of requesting the class from driver.
JPPFJob job = new JPPFJob();job.setRemoteClassLoadingEnabled(false);
2. Is there anyway for node to run multiple tasks in parallel? Currently if I want one machine to execute 3 tasks, I run 3 separate JPPF node instances .
# execute up to 3 tasks in paralleljppf.processing.threads = 3
3. ... Sometimes all sent jobs are ended, but sometimes we stop recieve results from driver, and in log we get "o.j.client.BaseJPPFClientConnection - java.io.EOFException: null". This can happen in any time, at the end of whole process or at the beginning, no rules. Any idea why?
Does he send maximum number of tasks that node can process?
Do you agree it's better to have one node with 10 threads than 5 nodes with 2 threads?
Can't find why sometimes we stop receiving results from driver. Where to look, in driver or should I log something on the client?
log4j.logger.org.jppf.client=DEBUG
log4j.logger.org.jppf.server.nio.client=DEBUGlog4j.logger.org.jppf.server.nio.nodeserver=DEBUGlog4j.logger.org.jppf.server.queue=DEBUG