-
Hi dear community, After checking the examples in the documentation, it does not seem to me that to restrict the file access in e.g., Azure Storage Account is possible. For example, I would like to restrict the user access to some specific files inside the data lake. Anyone has an idea? Many thanks. Cheers. |
Beta Was this translation helpful? Give feedback.
Answered by
yaooqinn
Feb 24, 2023
Replies: 1 comment 8 replies
-
Does the file system you use support ACL? If so, you can depend on it or use row-level filtering. For example, if users are restricted to accessing |
Beta Was this translation helpful? Give feedback.
8 replies
Answer selected by
cic1988
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Does the file system you use support ACL? If so, you can depend on it or use row-level filtering. For example, if users are restricted to accessing
day=2/abc.txt
, it is equivalent that there's a row filter(day!=2) for them.