Questions tagged [livy]

Apache Livy is a service that enables easy interaction with a Spark cluster over a REST interface

From http://livy.incubator.apache.org.

What is Apache Livy?

Apache Livy is a service that enables easy interaction with a Spark cluster over a REST interface. It enables easy submission of Spark jobs or snippets of Spark code, synchronous or asynchronous result retrieval, as well as Spark Context management, all via a simple REST interface or a RPC client library. Apache Livy also simplifies the interaction between Spark from application servers, thus enabling the use of Spark for interactive web/mobile applications. Additional features include:

  • Have long running Spark Contexts that can be used for multiple Spark jobs, by multiple clients
  • Share cached RDDs or Dataframes across multiple jobs and clients
  • Multiple Spark Contexts can be managed simultaneously, and the Spark Contexts run on the cluster (YARN/Mesos) instead of the Livy Server, for good fault tolerance and concurrency
  • Jobs can be submitted as precompiled jars, snippets of code or via java/scala client API
  • Ensure security via secure authenticated communication

References

288 questions
-1
votes
2 answers

How can I send an Output (python dict) into a spark cell?

I use a docker with some containers (one for Jupyter-Lab, one for Spark and 3 for each products of ELK (ElasticSearch, Kibana and Logstash). I also use sparkmagic for my jupyter's notebooks. So what I'm trying to do is to send an Output of a cell to…
hlas95
  • 3
  • 2
-1
votes
1 answer

I want to implement javamelody in livyServer, Please let me how can i do this

Hi I need to implement the javamelody so that i can know how much time is consuming by which call. SO please help me to implement this.
-3
votes
1 answer

Summing up consecutive values for each sequence in scala

I have a data set where I have sequence numbers say 0's and 1's. Category Value Sequences 1 10 0 1 11 1 1 13 1 1 16 1 1 20 0 1 21 0 1 …
Sara
  • 312
  • 6
  • 15
1 2 3
19
20