Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
<property>
  <name>hive.security.authorization.enabled</name>
  <value>true</value>
  <description>enable or disable the hive client authorization</description>
</property>

<property>
  <name>hive.security.authorization.createtable.userowner.grants</name>
  <value>ALL</value>
  <description>the privileges automatically granted to somethe usersowner whenever a table gets created. 
   An example like "userX,userY:select;userZ:createselect,drop" will grant select privilege to userX and userY, 
   and grant create drop privilege to userZthe wheneverowner aof new table created.<the table</description>
</property>

Note that, by default, the hive.security.authorization.createtable.userowner.grants are set to null, which would result in the creator of a table having no access to the table.

...