Reputation: 1426
I understand the concept of a role that Hive uses for security. Is it possible to find this information via Hive QL using a statement like DISPLAY ROLES
?
Bonus: Is it possible to get Hadoop user information via Hive QL?
Upvotes: 3
Views: 16134
Reputation: 6425
To display all roles in Cloudera Hive, use the following command:
SHOW ROLES;
Refer to Cloudera's Sentry Service documentation for more SHOW statements.
Upvotes: 2