[
https://issues.apache.org/jira/browse/RANGER-3605?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17486851#comment-17486851
]
Madhan Neethiraj commented on RANGER-3605:
------------------------------------------
committed to master branch:
{noformat}
commit a2e1ec4d55d9d87367c5da75763e0a44b5231fcc (HEAD -> master, origin/master,
origin/HEAD)
Author: Madhan Neethiraj <[email protected]>
Date: Wed Feb 2 16:56:40 2022 -0800
RANGER-3605: added support for macros in row-filter/condition expressions
{noformat}
committed to ranger-2.3 branch:
{noformat}
commit 45d9eef8cc9c441959da55d9809d58bcb2e594fb (HEAD -> ranger-2.3,
origin/ranger-2.3)
Author: Madhan Neethiraj <[email protected]>
Date: Wed Feb 2 16:56:40 2022 -0800
RANGER-3605: added support for macros in row-filter/condition expressions
(cherry picked from commit a2e1ec4d55d9d87367c5da75763e0a44b5231fcc)
{noformat}
> Support macros in row-filter/condition expressions
> --------------------------------------------------
>
> Key: RANGER-3605
> URL: https://issues.apache.org/jira/browse/RANGER-3605
> Project: Ranger
> Issue Type: Improvement
> Components: plugins
> Reporter: Madhan Neethiraj
> Assignee: Madhan Neethiraj
> Priority: Major
> Fix For: 3.0.0, 2.3.0
>
> Attachments: RANGER-3605.patch
>
>
> Enhancements in RANGER-3550, RANGER-3567, RANGER-3586 enable use of
> user/group/tag attributes in row-filter/condition expressions. To make it
> easier to refer to these attributes, it will help to be able to use macros
> instead of method calls, as shown below:
> {{{}site in ( $\{{GET_UG_ATTR_CSV('site'){}}}}} )
> instead of
> {{{}site in ( $\{{ctx.ugAttrCsv('site'){}}}}} )
>
> Following macros will be supported with this enhancement:
> ||Macro||Example Usage||Example Evaluated Value||
> |{{GET_TAG_ATTR_CSV}}|{{{}siteCode in
> ($\{{GET_TAG_ATTR_CSV('{}}}{{{}siteCode{}}}{{{}')}}){}}}|{{siteCode}}{{ in
> (10,20)}}|
> |{{GET_TAG_ATTR_Q_CSV}}|{{siteId in
> (${\{GET_TAG_ATTR_Q_CSV('siteId')}})}}|{{siteId in ('site1','site2')}}|
> |{{GET_UG_ATTR_CSV}}|{{{}groupId in
> ($\{{GET_UG_ATTR_CSV('{}}}{{{}groupId{}}}{{{}')}}){}}}|{{{}groupId in
> ({}}}{{{}10,20,30){}}}|
> |{{GET_UG_ATTR_Q_CSV}}|{{manager in
> (${\{GET_UG_ATTR_Q_CSV('manager')}})}}|{{manager in ('jane','john','scott')}}|
> |{{TAG_ATTR_NAMES_Q_CSV}}|{{attr_name in
> (${\{TAG_ATTR_NAMES_Q_CSV}})}}|{{{}attr_name in
> ({}}}{{{}'siteId','siteCode'){}}}|
> |{{TAG_NAMES_Q_CSV}}|{{tag_name in (${\{TAG_NAMES_Q_CSV}})}}|{{tag_name in
> ('PII','PCI')}}|
> |{{UG_ATTR_NAMES_Q_CSV}}|{{attr_name in
> (${\{UG_ATTR_NAMES_Q_CSV}})}}|{{{}attr_name in
> ({}}}{{{}'groupId','manager'){}}}|
> |{{UG_NAMES_Q_CSV}}|{{group_name in (${\{UG_NAMES_Q_CSV}})}}|{{{}group_name
> in ({}}}{{{}'group1','group2'){}}}|
> |{{UR_NAMES_Q_CSV}}|{{{}role_name in
> ($\{{{}}}{{{}UR_NAMES_Q_CSV}}){}}}|{{{}role_name in
> ({}}}{{{}'role1','role2'){}}}|
> |{{USER_ATTR_NAMES_Q_CSV}}|{{{}attr_name in
> ($\{{{}}}{{{}USER_ATTR_NAMES_Q_CSV}}){}}}|{{{}attr_name in
> ({}}}{{{}'dept','state'){}}}|
>
--
This message was sent by Atlassian Jira
(v8.20.1#820001)