Reputation: 115
I am running spark-job-server 0.5.3 from ooyala. I have followed their official documents and it works fine when it is started by sbt using reStart command. But i can't
make it work using server_start.sh script.
unable to run it on a standalone cluster. its working on local[*] master bydefault now there are no clear doc about how to run the job-server on standalone cluster.
any solution or link to any blog or proper docs is appreciated.
Thanks in advance.
Upvotes: 1
Views: 2025
Reputation: 2228
Documentation for the main spark job server project here: github.com/spark-jobserver
NOTE: by default the assembly jar from job-server-extras, which includes support for SQLContext and HiveContext, is used. If you face issues with all the extra dependencies, consider modifying the install scripts to invoke sbt job-server/assembly instead, which doesn't include the extra dependencies.
Upvotes: 1