I am a newbie to H2O and spark framework and I am having troubles with on boarding H2O+Spark (sparkling-water) PySparkling in Databricks. I have a 12 worker cluster running in Databricks in 1.5.2 environment.
Steps I took were as following:
1. Attach (Installed) necessary libraries (six, requests, tabulate, and future) required by H2O to my cluster
Then, I took the necessary .egg file from
sparkling-water-1.5.14/py/distfolder after unzipping it from the sparkling-water-1.5.14.zip package.I also attached the
sparkling-water-assembly-1.5.14.jarto my Databricks clusterI am able to
import h2osuccessfully. however, when I run the following cell in my python NB in Databricks, I am getting exception below:Initiate H2OContext on top of Spark
from pysparkling import * hc = H2OContext(sc).start() import h2o
I am getting following error
py4j.Py4JException: Method addURL([class java.net.URL]) does not exist
Sincerely appreciate any guidance on how to resolve this exception.