HBASE-10373 Add more details info for ACL group in HBase book
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1559836 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e93012ca83
commit
d04450f683
|
@ -718,10 +718,13 @@ The HBase shell has been extended to provide simple commands for editing and upd
|
|||
Grant
|
||||
<para>
|
||||
<programlisting>
|
||||
grant <user> <permissions> [ <table> [ <column family> [ <column qualifier> ] ] ]
|
||||
grant <user|@group> <permissions> [ <table> [ <column family> [ <column qualifier> ] ] ]
|
||||
</programlisting>
|
||||
</para>
|
||||
<para>
|
||||
<code class="code"><user|@group></code> is user or group (start with character '@'), Groups are created and manipulated via the Hadoop group mapping service.
|
||||
</para>
|
||||
<para>
|
||||
<code><permissions></code> is zero or more letters from the set "RWCA": READ('R'), WRITE('W'), CREATE('C'), ADMIN('A').
|
||||
</para>
|
||||
<para>
|
||||
|
@ -732,7 +735,7 @@ The HBase shell has been extended to provide simple commands for editing and upd
|
|||
</para>
|
||||
<para>
|
||||
<programlisting>
|
||||
revoke <user> [ <table> [ <column family> [ <column qualifier> ] ] ]
|
||||
revoke <user|@group> [ <table> [ <column family> [ <column qualifier> ] ] ]
|
||||
</programlisting>
|
||||
</para>
|
||||
<para>
|
||||
|
@ -741,7 +744,7 @@ The HBase shell has been extended to provide simple commands for editing and upd
|
|||
<para>
|
||||
The <code>alter</code> command has been extended to allow ownership assignment:
|
||||
<programlisting>
|
||||
alter 'tablename', {OWNER => 'username'}
|
||||
alter 'tablename', {OWNER => 'username|@group'}
|
||||
</programlisting>
|
||||
</para>
|
||||
<para>
|
||||
|
|
Loading…
Reference in New Issue