Re: [I] Implement authorization in DataFusion [datafusion]

2025-08-20 Thread via GitHub
YuriyGavrilov commented on issue #15192: URL: https://github.com/apache/datafusion/issues/15192#issuecomment-3207457344 @shohamyamin good option to have opa in this place - https://docs.opal.ac/getting-started/intro -- This is an automated message from the Apache Git Service. To respond t

Re: [I] Implement authorization in DataFusion [datafusion]

2025-04-05 Thread via GitHub
adriangb commented on issue #15192: URL: https://github.com/apache/datafusion/issues/15192#issuecomment-2777223602 We do something along these lines. Not for security per-se so I'm not going to vouch for it being secure but I think in principle it is: ```rust fn register_filtered_v

Re: [I] Implement authorization in DataFusion [datafusion]

2025-03-13 Thread via GitHub
shohamyamin commented on issue #15192: URL: https://github.com/apache/datafusion/issues/15192#issuecomment-2720394584 In catalog you can have only table level authorization(you have access to a table or not) but you cant have row level as it required to do some compute on the data(filter it

Re: [I] Implement authorization in DataFusion [datafusion]

2025-03-12 Thread via GitHub
jayzhan211 commented on issue #15192: URL: https://github.com/apache/datafusion/issues/15192#issuecomment-2719452814 Isn't authorization Catalog's role? What would it be like to have authorization logic in query engine? 🤔 -- This is an automated message from the Apache Git Service. To res

[I] Implement authorization in DataFusion [datafusion]

2025-03-12 Thread via GitHub
shohamyamin opened a new issue, #15192: URL: https://github.com/apache/datafusion/issues/15192 ### Is your feature request related to a problem or challenge? The current problem is that I need to have the ability to do row level security and column level security and column mask and c