Skip to content

Instantly share code, notes, and snippets.

@mmalohlava
Last active October 7, 2016 05:30
Show Gist options
  • Select an option

  • Save mmalohlava/f000f03d89ef351139c1ad6f998ce242 to your computer and use it in GitHub Desktop.

Select an option

Save mmalohlava/f000f03d89ef351139c1ad6f998ce242 to your computer and use it in GitHub Desktop.
Start Spark with Sparkling Water
$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