Dear All, Is there any way we can plug-in custom security checks in HBase?
We are exploring ways to do security checks at a more finer level where we want to control/check if the user can access this data or not. Once we do the authorization checks, want to pass an access token to the hbase region servers for any request. In the region server, we want to check for the validity of the access token via a call to the data source (say redis) where the access token is stored. So want to pass an additional argument say token for the hbase requests and get a handle for validating the token before performing the operation. If the token is invalid, should abort the operation and throw error to the client. Regards, Jagan
