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.py26
1 files changed, 26 insertions, 0 deletions
diff --git a/python/pyspark/context.py b/python/pyspark/context.py
index 2961cda553..3be07325f4 100644
--- a/python/pyspark/context.py
+++ b/python/pyspark/context.py
@@ -240,6 +240,32 @@ class SparkContext(object):
if isinstance(threading.current_thread(), threading._MainThread):
signal.signal(signal.SIGINT, signal_handler)
+ def __repr__(self):
+ return "<SparkContext master={master} appName={appName}>".format(
+ master=self.master,
+ appName=self.appName,
+ )
+
+ def _repr_html_(self):
+ return """
+ <div>
+ <p><b>SparkContext</b></p>
+
+ <p><a href="{sc.uiWebUrl}">Spark UI</a></p>
+
+ <dl>
+ <dt>Version</dt>
+ <dd><code>v{sc.version}</code></dd>
+ <dt>Master</dt>
+ <dd><code>{sc.master}</code></dd>
+ <dt>AppName</dt>
+ <dd><code>{sc.appName}</code></dd>
+ </dl>
+ </div>
+ """.format(
+ sc=self
+ )
+
def _initialize_context(self, jconf):
"""
Initialize SparkContext in function to allow subclass specific initialization