Skip to content

Commit

Permalink
missing document about spark.deploy.retainedDrivers
Browse files Browse the repository at this point in the history
The configuration on spark.deploy.retainedDrivers is undocumented but actually used
https://github.com/apache/spark/blob/master/core/src/main/scala/org/apache/spark/deploy/master/Master.scala#L60
  • Loading branch information
lianhuiwang committed Jul 16, 2014
1 parent 44a3f50 commit 5f6bbb7
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions docs/spark-standalone.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,20 @@ SPARK_MASTER_OPTS supports the following system properties:

<table class="table">
<tr><th>Property Name</th><th>Default</th><th>Meaning</th></tr>
<tr>
<td><code>spark.deploy.retainedApplications</code></td>
<td>200</td>
<td>
The number of completedApps to retain. If this cap is exceeded, then the oldest completedApps will be removed. <br/>
</td>
</tr>
<tr>
<td><code>spark.deploy.retainedDrivers</code></td>
<td>200</td>
<td>
The number of completedDrivers to retain. If this cap is exceeded, then the oldest completedDrivers will be removed. <br/>
</td>
</tr>
<tr>
<td><code>spark.deploy.spreadOut</code></td>
<td>true</td>
Expand Down

0 comments on commit 5f6bbb7

Please sign in to comment.