Skip to content

Commit

Permalink
sorted security
Browse files Browse the repository at this point in the history
  • Loading branch information
Brennon York committed Dec 31, 2014
1 parent ec34294 commit 55dc6f8
Showing 1 changed file with 32 additions and 32 deletions.
64 changes: 32 additions & 32 deletions docs/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -1107,6 +1107,25 @@ Apart from these, the following properties are also available, and may be useful
#### Security
<table class="table">
<tr><th>Property Name</th><th>Default</th><th>Meaning</th></tr>
<tr>
<td><code>spark.acls.enable</code></td>
<td>false</td>
<td>
Whether Spark acls should are enabled. If enabled, this checks to see if the user has
access permissions to view or modify the job. Note this requires the user to be known,
so if the user comes across as null no checks are done. Filters can be used with the UI
to authenticate and set the user.
</td>
</tr>
<tr>
<td><code>spark.admin.acls</code></td>
<td>Empty</td>
<td>
Comma separated list of users/administrators that have view and modify access to all Spark jobs.
This can be used if you run on a shared cluster and have a set of administrators or devs who
help debug when things work.
</td>
</tr>
<tr>
<td><code>spark.authenticate</code></td>
<td>false</td>
Expand All @@ -1123,6 +1142,15 @@ Apart from these, the following properties are also available, and may be useful
not running on YARN and authentication is enabled.
</td>
</tr>
<tr>
<td><code>spark.core.connection.ack.wait.timeout</code></td>
<td>60</td>
<td>
Number of seconds for the connection to wait for ack to occur before timing
out and giving up. To avoid unwilling timeout caused by long pause like GC,
you can set larger value.
</td>
</tr>
<tr>
<td><code>spark.core.connection.auth.wait.timeout</code></td>
<td>30</td>
Expand All @@ -1132,12 +1160,11 @@ Apart from these, the following properties are also available, and may be useful
</td>
</tr>
<tr>
<td><code>spark.core.connection.ack.wait.timeout</code></td>
<td>60</td>
<td><code>spark.modify.acls</code></td>
<td>Empty</td>
<td>
Number of seconds for the connection to wait for ack to occur before timing
out and giving up. To avoid unwilling timeout caused by long pause like GC,
you can set larger value.
Comma separated list of users that have modify access to the Spark job. By default only the
user that started the Spark job has access to modify it (kill it for example).
</td>
</tr>
<tr>
Expand All @@ -1154,16 +1181,6 @@ Apart from these, the following properties are also available, and may be useful
<code>-Dspark.com.test.filter1.params='param1=foo,param2=testing'</code>
</td>
</tr>
<tr>
<td><code>spark.acls.enable</code></td>
<td>false</td>
<td>
Whether Spark acls should are enabled. If enabled, this checks to see if the user has
access permissions to view or modify the job. Note this requires the user to be known,
so if the user comes across as null no checks are done. Filters can be used with the UI
to authenticate and set the user.
</td>
</tr>
<tr>
<td><code>spark.ui.view.acls</code></td>
<td>Empty</td>
Expand All @@ -1172,23 +1189,6 @@ Apart from these, the following properties are also available, and may be useful
user that started the Spark job has view access.
</td>
</tr>
<tr>
<td><code>spark.modify.acls</code></td>
<td>Empty</td>
<td>
Comma separated list of users that have modify access to the Spark job. By default only the
user that started the Spark job has access to modify it (kill it for example).
</td>
</tr>
<tr>
<td><code>spark.admin.acls</code></td>
<td>Empty</td>
<td>
Comma separated list of users/administrators that have view and modify access to all Spark jobs.
This can be used if you run on a shared cluster and have a set of administrators or devs who
help debug when things work.
</td>
</tr>
</table>

#### Spark Streaming
Expand Down

0 comments on commit 55dc6f8

Please sign in to comment.