aboutsummaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/pyspark/context.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/python/pyspark/context.py b/python/pyspark/context.py
index cb15b4b91f..aec0215b40 100644
--- a/python/pyspark/context.py
+++ b/python/pyspark/context.py
@@ -952,6 +952,11 @@ class SparkContext(object):
"""
self.profiler_collector.dump_profiles(path)
+ def getConf(self):
+ conf = SparkConf()
+ conf.setAll(self._conf.getAll())
+ return conf
+
def _test():
import atexit