-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/75335/
-----------------------------------------------------------
(Updated Jan. 16, 2025, 6:37 p.m.)
Review request for ranger, Dineshkumar Yadav, Abhay Kulkarni, Madhan Neethiraj,
Mehul Parikh, Pradeep Agrawal, Ramesh Mani, Sailaja Polavarapu, and Velmurugan
Periasamy.
Changes
-------
Addressed review comment
Bugs: RANGER-5097
https://issues.apache.org/jira/browse/RANGER-5097
Repository: ranger
Description
-------
Create a Hive Table as spark user from beeline and then try accessing the same
table from spark3-shell. The select query on Hive Table fails.
create table spark_table_123 (name string);
select * from spark_table_123
The below error is observed in spark3-shell
org.apache.spark.sql.AnalysisException:
org.apache.hadoop.hive.ql.metadata.HiveException: Unable to fetch table
spark_table_123. Permission denied: user [spark] does not have [SELECT]
privilege on [default/spark_table_123]
Expectation:
The Hive default policy for "Owner" user allowing "all" Access on all Hive
Database, table & column should allow the access.
Diffs (updated)
-----
hive-agent/src/main/java/org/apache/ranger/authorization/hive/authorizer/RangerHiveAuthorizer.java
38b8381a5
Diff: https://reviews.apache.org/r/75335/diff/2/
Changes: https://reviews.apache.org/r/75335/diff/1-2/
Testing
-------
Ranger maven build successful.
Ranger Setup & install successful.
Performed sanity testing. Ensured that the repro scenario yields correct
evaluation result.
Thanks,
Mahesh Bandal