mirror of
https://github.com/bspeice/kiva-dig
synced 2025-07-12 03:05:13 -04:00
Add a basic requirements file
And also easy script for running a Spark notebook
This commit is contained in:
9
start_pyspark.sh
Executable file
9
start_pyspark.sh
Executable file
@ -0,0 +1,9 @@
|
||||
SPARK_DIR="spark-2.0.1-bin-hadoop2.7"
|
||||
SPARK_URL="http://apache.claz.org/spark/spark-2.0.1/spark-2.0.1-bin-hadoop2.7.tgz"
|
||||
|
||||
if [ ! -d "$SPARK_DIR" ]; then
|
||||
echo "Downloading Spark distribution..."
|
||||
wget "$SPARK_URL" -O - | tar xzf -
|
||||
fi
|
||||
|
||||
PYSPARK_DRIVER_PYTHON="jupyter" PYSPARK_DRIVER_PYTHON_OPTS="notebook" "./$SPARK_DIR/bin/pyspark"
|
Reference in New Issue
Block a user