Skip to content

Commit

Permalink
sorted spark ui
Browse files Browse the repository at this point in the history
  • Loading branch information
Brennon York committed Dec 31, 2014
1 parent 3f32e5b commit 80a5bbb
Showing 1 changed file with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions docs/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -434,26 +434,28 @@ Apart from these, the following properties are also available, and may be useful
<table class="table">
<tr><th>Property Name</th><th>Default</th><th>Meaning</th></tr>
<tr>
<td><code>spark.ui.port</code></td>
<td>4040</td>
<td><code>spark.eventLog.compress</code></td>
<td>false</td>
<td>
Port for your application's dashboard, which shows memory and workload data.
Whether to compress logged events, if <code>spark.eventLog.enabled</code> is true.
</td>
</tr>
<tr>
<td><code>spark.ui.retainedStages</code></td>
<td>1000</td>
<td><code>spark.eventLog.dir</code></td>
<td>file:///tmp/spark-events</td>
<td>
How many stages the Spark UI and status APIs remember before garbage
collecting.
Base directory in which Spark events are logged, if <code>spark.eventLog.enabled</code> is true.
Within this base directory, Spark creates a sub-directory for each application, and logs the
events specific to the application in this directory. Users may want to set this to
a unified location like an HDFS directory so history files can be read by the history server.
</td>
</tr>
<tr>
<td><code>spark.ui.retainedJobs</code></td>
<td>1000</td>
<td><code>spark.eventLog.enabled</code></td>
<td>false</td>
<td>
How many jobs the Spark UI and status APIs remember before garbage
collecting.
Whether to log Spark events, useful for reconstructing the Web UI after the application has
finished.
</td>
</tr>
<tr>
Expand All @@ -464,28 +466,26 @@ Apart from these, the following properties are also available, and may be useful
</td>
</tr>
<tr>
<td><code>spark.eventLog.enabled</code></td>
<td>false</td>
<td><code>spark.ui.port</code></td>
<td>4040</td>
<td>
Whether to log Spark events, useful for reconstructing the Web UI after the application has
finished.
Port for your application's dashboard, which shows memory and workload data.
</td>
</tr>
<tr>
<td><code>spark.eventLog.compress</code></td>
<td>false</td>
<td><code>spark.ui.retainedJobs</code></td>
<td>1000</td>
<td>
Whether to compress logged events, if <code>spark.eventLog.enabled</code> is true.
How many jobs the Spark UI and status APIs remember before garbage
collecting.
</td>
</tr>
<tr>
<td><code>spark.eventLog.dir</code></td>
<td>file:///tmp/spark-events</td>
<td><code>spark.ui.retainedStages</code></td>
<td>1000</td>
<td>
Base directory in which Spark events are logged, if <code>spark.eventLog.enabled</code> is true.
Within this base directory, Spark creates a sub-directory for each application, and logs the
events specific to the application in this directory. Users may want to set this to
a unified location like an HDFS directory so history files can be read by the history server.
How many stages the Spark UI and status APIs remember before garbage
collecting.
</td>
</tr>
</table>
Expand Down

0 comments on commit 80a5bbb

Please sign in to comment.