Details
Description
In the python livy client, there is reference to an upload command: https://github.com/cloudera/livy/blob/master/python-api/src/main/python/livy/client.py#L253
This seems to point to http://server:port/sessions/<ID>/upload
I am interested in how to upload a file not from the location of the livy server, but from a remote box talking to it. Furthermore, this should be an archive available to spark before executing workers (so that I can execute an environment within my upload).
How does this end-point or client command work, what do I need to do to achieve the above workflow?