行过滤和列脱敏
#7539
Replies: 2 comments 1 reply
-
|
问下你们脱敏是放在了be层吗? |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
sql 重写,在fe层 |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
column masking
example:
customer table as follow ,the telephone num is sensitive ,don't want be select by user A。 but user B can view all data。
solution :
add function at table customer column telephone for user A。
then user A do : select * from customer :
at user B's view: select * from customer :

row filter
example :table order

hope user A only can view data ‘省份’ is ‘湖南’。
solution :

add express at table order for user A
then when user A do : select * from order
next is i implement example:
row filter :
column mask:
show grants
priv revoke
propose:
is it a good way use mask_priv/filter_priv to grant ?
for huawei gsDB
https://support.huaweicloud.com/devg2-dws/dws_0402_0042.html
for hive /presto user range

Beta Was this translation helpful? Give feedback.
All reactions