Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: trivial edits – line breaks

 

Hive Authorization

Table of Contents

...

  • hive.metastore.pre.event.listeners –
    Set to org.apache.hadoop.hive.ql.security.authorization.AuthorizationPreEventListener.
    This turns on metastore-side security.
  • hive.security.metastore.authorization.manager
    Set to org.apache.hadoop.hive.ql.security.authorization.DefaultHiveMetastoreAuthorizationProvider.
    This tells Hive which metastore-side authorization provider to use. The DefaultHiveMetastoreAuthorizationProvider implements the standard Hive grant/revoke model. To use an HDFS permission-based model to do your authorization, you can use org.apache.hadoop.hive.ql.security.authorization.StorageBasedAuthorizationProvider instead.
  • hive.security.metastore.authenticator.manager
    Set to org.apache.hadoop.hive.ql.security.HadoopDefaultMetastoreAuthenticator.

...