0

How can I put column level access in a hive table through Apache Sentry?

Anthon
  • 69,918
  • 32
  • 186
  • 246
Prasad
  • 61
  • 4
  • 11
  • "Could someone help me understand how to..." the only possible answers are "Yes" or "No". How would that help you? Always ask questions in a way that the answer directly helps you. – Anthon Apr 27 '15 at 09:34

2 Answers2

0

Column Level Security is added in CDH 5.5. Pls refer to http://www.cloudera.com/content/www/en-us/documentation/enterprise/latest/topics/sg_hive_sql.html?scroll=concept_c2q_4qx_p4__col_level_auth_sentry#concept_c2q_4qx_p4__col_level_auth_sentry

You can grant and revoke specific columns that a user has access to from the table.

myloginid
  • 1,463
  • 2
  • 22
  • 37
-1
create database XXX;

create view XXX.ABC as select X, Y, Z from XXX.ABC;
Infinite Recursion
  • 6,511
  • 28
  • 39
  • 51