Last active
October 7, 2016 05:30
-
-
Save mmalohlava/f000f03d89ef351139c1ad6f998ce242 to your computer and use it in GitHub Desktop.
Start Spark with Sparkling Water
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $SPARK_HOME/bin/spark-submit \ | |
| --master "local[*]" \ | |
| --class water.SparklingWaterDriver \ | |
| --packages ai.h2o:sparkling-water-examples_2.11:2.0.0 \ | |
| --executor-memory=8g \ | |
| --driver-memory=8g \ | |
| --conf spark.driver.extraJavaOptions="-XX:MaxPermSize=256m" \ | |
| --conf spark.executor.extraJavaOptions="-XX:MaxPermSize=256m" \ | |
| --conf spark.ext.h2o.node.log.level=INFO \ | |
| --conf spark.ext.h2o.client.log.level=INFO \ | |
| private/scalastyle.jar # any jar or /dev/null |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment