Cassandra – User Grant in Cassandra DB

cassandra

I would like a user abc to access only a single keyspace and no other keyspaces in the Database.
How can I achieve so?

Best Answer

Just as described in documentation:

GRANT <permission> ON <keyspace> TO <user>;

You need to setup authentication/authorization before, and create user/role.