Skip to content

Commit

Permalink
[SPARK-4642] Add description about spark.yarn.queue to running-on-YAR…
Browse files Browse the repository at this point in the history
…N document.

Added descriptions about these parameters.
- spark.yarn.queue

Modified description about the defalut value of this parameter.
- spark.yarn.submit.file.replication

Author: Masayoshi TSUZUKI <[email protected]>

Closes apache#3500 from tsudukim/feature/SPARK-4642 and squashes the following commits:

ce99655 [Masayoshi TSUZUKI] better gramatically.
21cf624 [Masayoshi TSUZUKI] Removed intentionally undocumented properties.
88cac9b [Masayoshi TSUZUKI] [SPARK-4642] Documents about running-on-YARN needs update
  • Loading branch information
tsudukim authored and Andrew Or committed Dec 3, 2014
1 parent edd3cd4 commit 692f493
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion docs/running-on-yarn.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Most of the configs are the same for Spark on YARN as for other deployment modes
</tr>
<tr>
<td><code>spark.yarn.submit.file.replication</code></td>
<td>3</td>
<td>The default HDFS replication (usually 3)</td>
<td>
HDFS replication level for the files uploaded into HDFS for the application. These include things like the Spark jar, the app jar, and any distributed cache files/archives.
</td>
Expand Down Expand Up @@ -91,6 +91,13 @@ Most of the configs are the same for Spark on YARN as for other deployment modes
The amount of off heap memory (in megabytes) to be allocated per driver. This is memory that accounts for things like VM overheads, interned strings, other native overheads, etc. This tends to grow with the container size (typically 6-10%).
</td>
</tr>
<tr>
<td><code>spark.yarn.queue</code></td>
<td>default</td>
<td>
The name of the YARN queue to which the application is submitted.
</td>
</tr>
<tr>
<td><code>spark.yarn.jar</code></td>
<td>(none)</td>
Expand Down

0 comments on commit 692f493

Please sign in to comment.