aboutsummaryrefslogtreecommitdiff
path: root/python/pyspark/context.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/pyspark/context.py')
-rw-r--r--python/pyspark/context.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/python/pyspark/context.py b/python/pyspark/context.py
index aec0215b40..7217a9907a 100644
--- a/python/pyspark/context.py
+++ b/python/pyspark/context.py
@@ -155,10 +155,6 @@ class SparkContext(object):
self.appName = self._conf.get("spark.app.name")
self.sparkHome = self._conf.get("spark.home", None)
- # Let YARN know it's a pyspark app, so it distributes needed libraries.
- if self.master == "yarn-client":
- self._conf.set("spark.yarn.isPython", "true")
-
for (k, v) in self._conf.getAll():
if k.startswith("spark.executorEnv."):
varName = k[len("spark.executorEnv."):]