Skip to content
Snippets Groups Projects
Commit ca379039 authored by Masayoshi TSUZUKI's avatar Masayoshi TSUZUKI Committed by Josh Rosen
Browse files

[SPARK-4464] Description about configuration options need to be modified in docs.

Added description about -h and -host.
Modified description about -i and -ip which are now deprecated.
Added description about --properties-file.

Author: Masayoshi TSUZUKI <tsudukim@oss.nttdata.co.jp>

Closes #3329 from tsudukim/feature/SPARK-4464 and squashes the following commits:

6c07caf [Masayoshi TSUZUKI] [SPARK-4464] Description about configuration options need to be modified in docs.
parent 15cf3b01
No related branches found
No related tags found
No related merge requests found
......@@ -34,8 +34,12 @@ Finally, the following configuration options can be passed to the master and wor
<table class="table">
<tr><th style="width:21%">Argument</th><th>Meaning</th></tr>
<tr>
<td><code>-i IP</code>, <code>--ip IP</code></td>
<td>IP address or DNS name to listen on</td>
<td><code>-h HOST</code>, <code>--host HOST</code></td>
<td>Hostname to listen on</td>
</tr>
<tr>
<td><code>-i HOST</code>, <code>--ip HOST</code></td>
<td>Hostname to listen on (deprecated, use -h or --host)</td>
</tr>
<tr>
<td><code>-p PORT</code>, <code>--port PORT</code></td>
......@@ -57,6 +61,10 @@ Finally, the following configuration options can be passed to the master and wor
<td><code>-d DIR</code>, <code>--work-dir DIR</code></td>
<td>Directory to use for scratch space and job output logs (default: SPARK_HOME/work); only on worker</td>
</tr>
<tr>
<td><code>--properties-file FILE</code></td>
<td>Path to a custom Spark properties file to load (default: conf/spark-defaults.conf)</td>
</tr>
</table>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment