Skip to content
Snippets Groups Projects
Commit d3525bab authored by Matei Zaharia's avatar Matei Zaharia
Browse files

Merge pull request #813 from AndreSchumacher/add_files_pyspark

Implementing SPARK-865: Add the equivalent of ADD_JARS to PySpark
parents 9e02da27 8fd5c7bc
No related branches found
No related tags found
No related merge requests found
......@@ -24,10 +24,15 @@ import os
import pyspark
from pyspark.context import SparkContext
# this is the equivalent of ADD_JARS
add_files = os.environ.get("ADD_FILES").split(',') if os.environ.get("ADD_FILES") != None else None
sc = SparkContext(os.environ.get("MASTER", "local"), "PySparkShell")
sc = SparkContext(os.environ.get("MASTER", "local"), "PySparkShell", pyFiles=add_files)
print "Spark context avaiable as sc."
if add_files != None:
print "Adding files: [%s]" % ", ".join(add_files)
# The ./pyspark script stores the old PYTHONSTARTUP value in OLD_PYTHONSTARTUP,
# which allows us to execute the user's PYTHONSTARTUP file:
_pythonstartup = os.environ.get('OLD_PYTHONSTARTUP')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment