I have recently started learning about H2O AutoML. I am wondering which one of the following options works better. Single node with 6GB of memory or a cluster of three nodes with 2GB memory each.
- java -Xmx6g -jar h2o.jar -name MyCluster
- java -Xmx2g -jar h2o.jar & java -Xmx2g -jar h2o.jar & java -Xmx2g -jar h2o.jar &
If there are drawbacks with single node deployment, can you recommend any methods to optimize the performance? Thanks in advance!