Using Amazon emr-5.30.1 with Livy 0.7 and Spark 2.4.5
We are willing to use Apache Livy as a REST Service for spark. The mode we want to work with is session and not batch. Trying to upload a jar to the session (by the formal API) using:
curl -X POST \
-d '{"conf": {"kind" : "spark","jars": "s3://cjspro-emr-data/spark-examples.jar"}}' \
-H "Content-Type: application/json" localhost:8998/sessions
Looking at the session logs gives the impression that the jar is not being uploaded. Not to mention that code snippets that are using the requested jar not working.
Any help?