0

I have a Hive table Person with 50 partitions (one for each state). Is there any way I can limit access to the partitions in Hive? For e.g: I want a user to have access to partition CA and IL only, any way to implement this in Hive.

I'm on Hive 0.12 currently

user3646519
  • 353
  • 5
  • 15

1 Answers1

0

Having VIEWS on top of your table with specific grants to the required users is the simplest option.

Kunal
  • 126
  • 1
  • 8