Questions tagged [spark-jobserver]

spark-jobserver provides a RESTful interface for submitting and managing Apache Spark jobs, jars, and job contexts.

Reference: https://github.com/spark-jobserver/spark-jobserver

RealTime Example: https://nishutayaltech.blogspot.com/2016/05/how-to-run-spark-job-server-and-spark.html

165 questions
1
vote
1 answer

Persisting / Sharing a RDD in Spark Job Server

I want a RDD from a spark job to be persisted, so that it can be used by all subsequent jobs using Spark Job Server. Here is what i have tried: Job 1: package spark.jobserver import com.typesafe.config.{Config, ConfigFactory} import…
vdep
  • 3,541
  • 4
  • 28
  • 54
1
vote
0 answers

Spark jobserver is not finishing YARN processes

I have configured Spark jobserver to run on YARN. I am able to send spark jobs to YARN but even after the job finishes it does not quit on YARN For eg: I tried to make a simple spark context. The context is reflecting in jobserver but YARN is still…
1
vote
2 answers

Exception when running Spark job server in spark standalone mode

I'm trying out the Spark job server - specifically, the docker container option. I was able to run the WordCountExample app in spark local mode. However, I ran into an exception when I tried to point the app to a remote Spark master. Following are…
jithinpt
  • 1,204
  • 2
  • 16
  • 33
1
vote
1 answer

Spark jobServer doesn't start

I've just got a weird problem when I attempt to instantiate the Spark Jobserver. It seems it's looking at a wrong directory. Does anybody know something about this?. Maybe I am missing something but the directory /usr/share/dse/bin/dse doesnt't…
jguerra
  • 147
  • 6
1
vote
1 answer

How to set spark-job-server config?

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…
1
vote
1 answer

Spark JobServer NullPointerException

I'm trying to start a spark jobserver, here are the steps I'm following: I configure the local.sh based on the template. Then I run ./bin/server_deploy.sh and it finishes without any error. Configure local.conf. Run ./bin/server_start.sh in the…
luis.alves
  • 335
  • 1
  • 3
  • 13
1
vote
1 answer

Can't start local instance of Spark-Jobserver

So I'm trying to create a local instance of spark jobserver to test jobs on and I can't even get it to run. So the first thing I do when I got into my vagrant instance is I start spark. I know this works because I submit jobs to spark with the…
vicg
  • 1,280
  • 14
  • 32
1
vote
2 answers

Does Spark Job Server have to be deployed on the same host as Spark Master?

I want to deploy Spark Job Server (in a Docker container) on a different host to the Spark Master. However the server_start.sh script seems to assume that it is being run on the same machine as the Spark Master. E.g.: if [ -z "$SPARK_CONF_DIR" ];…
snark
  • 2,462
  • 3
  • 32
  • 63
1
vote
1 answer

spark-jobserver and mllib issue running jobs

I'm experimenting with the JobServer and would like to use it in our production environment. I want to use mllib and spark-jobserver together, but i got a error (at the spark-jobserver, when a job is sended). job-server[ERROR] Uncaught error from…
1
vote
1 answer

Run my SparkJob on apache job-server

I have a problem with Apache job-server and my .jar with SparkJob. I have VirtualBox with DataStax. There are Cassandra and Spark. I install Apache job-server from git job-server. I want run examples so I write sbt job-server-tests/package and next…
0
votes
1 answer

How do I configure the Spark Job Server in DSE to queue jobs until resources are available?

We are using DataStax Enterprise which has support for Spark and Spark Job server. We have 3 node olap casandra cluster with each node configuration of 8 core processor and 32G of RAM As far our spark job is concerned with above configuration I was…
0
votes
0 answers

Spark streaming trigger(once=True) is not stopping spark job

I have streaming query with trigger once. But as per spark documentation once all records are read from event-hub,spark job should stop. But this is not…
0
votes
0 answers

spark cache manager behavior

I'm trying to understand the spark cache manager behavior as I deployed my test code to spark job server to have long running context and want to test the behavior by executing the same job multiple time after each other to see how caching is. val…
0
votes
1 answer

Monitoring for the spark-jobserver

I'm currently working with spark-jobserver, and when the spark-jobserver goes down my app just stop working but I don't get notified There is a health check to spark-jobserver?
Miguel Garcia
  • 35
  • 2
  • 8
0
votes
1 answer

How to solve "JOB Loading Failed" error in Spark jobserver, while submitting jobs in Java?

This is a simple Java code as a Spark job, mentioned in Spark job-server github repo package com.sample.wordcount; import com.typesafe.config.Config; import com.typesafe.config.ConfigFactory; import…