piby180 opened a new issue, #14076:
URL: https://github.com/apache/pinot/issues/14076

   We are currently using ZkBasicAuthAccessControlFactory to manage our users 
in Pinot. 
   
   With this, we can
   1. provide access to ALL tables
   2. provide access to specific table. List of tables have to be provided 
**explicitly** here
   
   We now have 100s of tables and we often get the requirement to provide 
access to all tables except tableX. With the current setup, the only way is to 
provide a list of all tables except tableX in POST /users rest call.
   
   We would like to request to implement a new version of payload for 
   
   ```
   POST /users
   
   {
       "username" : "user1"
       "password" : "test",
       "component" : "BROKER",
       "role" : "USER",
       "permissions" : ["READ"],
       "tables" : ["ALL"],
       "excludeTables" : ["tableX"]
   }
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to