aboutsummaryrefslogtreecommitdiff
path: root/docs/configuration.md
diff options
context:
space:
mode:
authorzhuol <zhuol@yahoo-inc.com>2015-09-01 11:14:59 -1000
committerReynold Xin <rxin@databricks.com>2015-09-01 11:14:59 -1000
commitec012805337926e56343be2761a1037296446880 (patch)
tree02b19b93109be9dc0f6eb8f25e2423eee1748a78 /docs/configuration.md
parent3f63bd6023edcc9af268933a235f34e10bc3d2ba (diff)
downloadspark-ec012805337926e56343be2761a1037296446880.tar.gz
spark-ec012805337926e56343be2761a1037296446880.tar.bz2
spark-ec012805337926e56343be2761a1037296446880.zip
[SPARK-4223] [CORE] Support * in acls.
SPARK-4223. Currently we support setting view and modify acls but you have to specify a list of users. It would be nice to support * meaning all users have access. Manual tests to verify that: "*" works for any user in: a. Spark ui: view and kill stage. Done. b. Spark history server. Done. c. Yarn application killing. Done. Author: zhuol <zhuol@yahoo-inc.com> Closes #8398 from zhuoliu/4223.
Diffstat (limited to 'docs/configuration.md')
-rw-r--r--docs/configuration.md9
1 files changed, 6 insertions, 3 deletions
diff --git a/docs/configuration.md b/docs/configuration.md
index 77c5cbc7b3..fb0315ce7c 100644
--- a/docs/configuration.md
+++ b/docs/configuration.md
@@ -1286,7 +1286,8 @@ Apart from these, the following properties are also available, and may be useful
<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.
+ help debug when things work. Putting a "*" in the list means any user can have the priviledge
+ of admin.
</td>
</tr>
<tr>
@@ -1327,7 +1328,8 @@ Apart from these, the following properties are also available, and may be useful
<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).
+ user that started the Spark job has access to modify it (kill it for example). Putting a "*" in
+ the list means any user can have access to modify it.
</td>
</tr>
<tr>
@@ -1349,7 +1351,8 @@ Apart from these, the following properties are also available, and may be useful
<td>Empty</td>
<td>
Comma separated list of users that have view access to the Spark web ui. By default only the
- user that started the Spark job has view access.
+ user that started the Spark job has view access. Putting a "*" in the list means any user can
+ have view access to this Spark job.
</td>
</tr>
</table>