I want to run a spark script and go to the IPython shell to interactively explore the data.
Running both:
$ IPYTHON=1 pyspark --master local[2] myscript.py
and
$ IPYTHON=1 spark-submit --master local[2] myscript.py
both exiting IPython after completion.
It seems very simple, but cannot find how to do it anywhere.
source share