To elaborate, I am using livy to create a spark session and then I submit my jobs to the livy client which runs them in the same spark session. Now, if I need to add a new jar as a dependency in one of the jobs, is there any way to put the jar in the running spark session?
I have tried spark.jars, but it is only read while creating the session and not in an already running one.
Thanks