aboutsummaryrefslogtreecommitdiff
path: root/docs/monitoring.md
diff options
context:
space:
mode:
authorPatrick Wendell <pwendell@gmail.com>2013-09-10 23:12:27 -0700
committerPatrick Wendell <pwendell@gmail.com>2013-09-11 10:01:38 -0700
commitbddf1356708f42352934313c82f48dbce0056a68 (patch)
tree414529a7638adb6d9aa44b08e3b495eead652be8 /docs/monitoring.md
parent2425eb85ca709273c48958f81a81c8a04657ea1f (diff)
downloadspark-bddf1356708f42352934313c82f48dbce0056a68.tar.gz
spark-bddf1356708f42352934313c82f48dbce0056a68.tar.bz2
spark-bddf1356708f42352934313c82f48dbce0056a68.zip
Change port from 3030 to 4040
Diffstat (limited to 'docs/monitoring.md')
-rw-r--r--docs/monitoring.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/monitoring.md b/docs/monitoring.md
index 0e3606f71a..5f456b999b 100644
--- a/docs/monitoring.md
+++ b/docs/monitoring.md
@@ -7,7 +7,7 @@ There are several ways to monitor Spark applications.
# Web Interfaces
-Every SparkContext launches a web UI, by default on port 3030, that
+Every SparkContext launches a web UI, by default on port 4040, that
displays useful information about the application. This includes:
* A list of scheduler stages and tasks
@@ -15,9 +15,9 @@ displays useful information about the application. This includes:
* Information about the running executors
* Environmental information.
-You can access this interface by simply opening `http://<driver-node>:3030` in a web browser.
+You can access this interface by simply opening `http://<driver-node>:4040` in a web browser.
If multiple SparkContexts are running on the same host, they will bind to succesive ports
-beginning with 3030 (3031, 3032, etc).
+beginning with 4040 (4041, 4042, etc).
Spark's Standlone Mode cluster manager also has its own
[web UI](spark-standalone.html#monitoring-and-logging).