aboutsummaryrefslogtreecommitdiff
path: root/docs/spark-standalone.md
diff options
context:
space:
mode:
authorMasayoshi TSUZUKI <tsudukim@oss.nttdata.co.jp>2014-12-04 19:33:02 -0800
committerJosh Rosen <joshrosen@databricks.com>2014-12-04 19:33:02 -0800
commitca379039f701e423fa07933db4e063cb85d0236a (patch)
tree96e8e9929f3dd63f84d99c146eb8258458ea8181 /docs/spark-standalone.md
parent15cf3b0125fe238dea2ce13e703034ba7cef477f (diff)
downloadspark-ca379039f701e423fa07933db4e063cb85d0236a.tar.gz
spark-ca379039f701e423fa07933db4e063cb85d0236a.tar.bz2
spark-ca379039f701e423fa07933db4e063cb85d0236a.zip
[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.
Diffstat (limited to 'docs/spark-standalone.md')
-rw-r--r--docs/spark-standalone.md12
1 files changed, 10 insertions, 2 deletions
diff --git a/docs/spark-standalone.md b/docs/spark-standalone.md
index d503bc961e..ae7b81d5bb 100644
--- a/docs/spark-standalone.md
+++ b/docs/spark-standalone.md
@@ -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>