Role-based Access Control (RBAC)

Describes role-based access control (RBAC), authentication and authorization in QuestDB.

note

Role-based Access Control (RBAC) is available in QuestDB Enterprise & QuestDB Cloud.

User and service accounts#

QuestDB's access control system applies both user and service accounts. Users and service accounts are the entities that can be authenticated, then authorized to perform operations in the database.

Although users and service accounts look similar, they are fundamentally different:

  • A user generally belongs to an individual. Individuals are often part of a team or a department of an organization.

  • A service account generally belongs to an org. A service account is suited for an application accessing the database.

Organizational units, such as teams or departments are represented by groups. Users can be associated with multiple groups at the same time. Members of a team often require the same permissions - a group of analysts, for example. As a consequence, both users and groups can be granted permissions. Users inherit permissions from the groups with which they are associated.

Service accounts, on the other hand, do not inherit permissions from anywhere. All permissions required by the application accessing the database must be granted directly to the service account. This is because applications work with the data programmatically, so their access is usually more restrictive than the permissions of a user or a group. For example, a service account would not usually need to create and drop database tables, while users are often granted this ability.

The below diagram is an example of a QuestDB access control system. Inherited permissions are shown in grey colour:

Diagram showing users, service accounts and groups in QuestDB
Users, service accounts and groups

Based on the abovem service accounts seem to be very isolated entities. But you might have already noticed the appearance of the above ASSUME SERVICE ACCOUNT permission.

Applications are usually owned by teams or a group of individuals. Hence, service accounts can be linked to a number of users and/or groups by granting them this permission. Being able to assume a service account means that a user can switch to the access list of the service account from their own account. This concept provides a great way of debugging access control related bugs in an application, and also controls who can see the permissions of a service account.

Ultimately, users are granted a set of permissions, either directly or indirectly via groups. The overall set of permissions granted to them forms their access control list. This list governs their authorization, what they can and cannot do.

The diagram below shows the authentication and authorization flow in QuestDB:

Diagram shows authentication and authorization flow in QuestDB
Authentication and authorization flow

Authentication#

Users must authenticate themselves before they perform any database operations. Authentication is required to determine an identity, and then subsequently to find their access control list.

Authentication must happen via a secure TLS connection, otherwise the user's secrets used for authentication will travel unencrypted.

QuestDB supports three different ways of authentication:

  • Password: The user is required to provide their credentials for successful authentication. An initial password can be set when the user is created. This password should be modified by the user after their first successful login. Only a single password can be set for a user; there is no option to have multiple passwords at the same time. Password authentication is supported by the REST and the PostgreSQL Wire endpoints.
  • JWK Token: The user is required to provide a JWK token. The private key of the token is tested against their public key which has been recorded previously in the database. Only a single token can be set for a user; there is no option to have multiple tokens at the same time. JWK token authentication is supported by the InfluxDB Line Protocol (ILP) endpoint.
  • REST API Token: The user is required to provide a REST API token. The token is tested against other tokens that were previously generated in the database. A user may have multiple REST API tokens. REST API token authentication is supported by the REST endpoint.

Users and service accounts can have both password and token authentication enabled at the same time.

The only exception is QuestDB's built-in admin, which supports only password authentication. The built-in admin should be used to create the users and groups initially. More on the built-in admin later.

User Management#

User management happens via SQL commands.

The CREATE USER / CREATE SERVICE ACCOUNT commands are used to create new users and service accounts. These commands also provide the option to specify an initial password, which should be changed after the first login. The name of the principal must be unique across all users, service accounts and groups. This is enforced by QuestDB.

CREATE USER user0;
CREATE USER user1 WITH PASSWORD pwd1;
CREATE SERVICE ACCOUNT application0;
CREATE SERVICE ACCOUNT application1 WITH PASSWORD pwd1;

The list of users can be displayed with the help of the SHOW USERS command.

SHOW USERS;
name
-----
admin
user0
user1

A similar command exists for service accounts too.

SHOW SERVICE ACCOUNTS;
name
-----
application0
application1

Principals can change their password with the help of the ALTER USER / ALTER SERVICE ACCOUNT commands.

ALTER USER user1 WITH PASSWORD pwd2;
ALTER SERVICE ACCOUNT application1 WITH PASSWORD pwd2;

JWK tokens can be used for authentication too. The ALTER command can be used to create a new JWK token.

ALTER USER user1 CREATE TOKEN TYPE JWK;
ALTER SERVICE ACCOUNT application1 CREATE TOKEN TYPE JWK;

The output of the command is the public and private keys of the principal. The keys should be copied and stored safely by the user. QuestDB does not store the private key. If the private key is lost, it cannot be recovered. A new token must be generated. If the above command is repeated, the token gets replaced with a new one.

As mentioned earlier, REST API tokens can be used for authentication as well. The ALTER command can be used to create a new REST API token:

ALTER USER user1 CREATE TOKEN TYPE REST WITH TTL '30d';
ALTER SERVICE ACCOUNT application1 CREATE TOKEN TYPE REST WITH TTL '1d' REFRESH;

The output of the command is the generated token. The token should be copied and stored safely by the user. QuestDB does not store the token. If the token is lost, it cannot be recovered. A new token must be generated. If the above command is repeated, a new token gets generated, but all generated tokens will remain valid.

Check which authentication mode is enabled for a user with the SHOW USER command:

SHOW USER user1;
auth_type enabled
--------- -------
Password true
JWK Token false
REST Token false

A similar command exists for service accounts too:

SHOW SERVICE ACCOUNT application1;
auth_type enabled
--------- -------
Password false
JWK Token true
REST Token false

Passwords and tokens also can be removed with the help of ALTER:

ALTER USER user1 WITH NO PASSWORD;
ALTER USER user1 DROP TOKEN TYPE JWK;
-- drop single REST API token
ALTER USER user1 DROP TOKEN TYPE REST 'qt1cNK6s2t79f76GmTBN9k7XTWm5wwOtF7C0UBxiHGPn44';
-- drop all REST API tokens for the given user
ALTER USER user1 DROP TOKEN TYPE REST;
ALTER SERVICE ACCOUNT application1 WITH NO PASSWORD;
ALTER SERVICE ACCOUNT application1 DROP TOKEN TYPE JWK;
ALTER SERVICE ACCOUNT application1 DROP TOKEN TYPE REST;

By removing all secrets, the user is essentially disabled. They cannot access the database anymore.

If we wanted to remove the user entirely, we can use the DROP USER / DROP SERVICE ACCOUNT statements:

DROP USER user1;
DROP SERVICE ACCOUNT application1;

Related SQL commands:

Managing Groups#

Groups are a great tool to reduce the burden of user management. They help group people together when many users require the same or similar permissions.

The CREATE GROUP command is used to create new groups.

CREATE GROUP group1;
CREATE GROUP group2;

To avoid confusion, the name of the group must be unique across all users, service accounts and groups.

The list of groups can be displayed with the help of the SHOW GROUPS command:

SHOW GROUPS;
name
------
group1
group2

Users can be added to or removed from groups:

ADD USER user1 TO group1;
REMOVE USER user1 FROM group2;

Users of a group inherit the permissions granted to the group.

note

Permissions inherited from groups cannot be revoked directly from the user.

We can check the groups of a user with the SHOW GROUPS command:

SHOW GROUPS user1;
name
------
group1

Groups can be deleted with DROP GROUP:

DROP GROUP group2;

If a group is deleted, all users of the group lose the permissions they previously inherited from the group.

Related SQL commands:

Built-in admin#

A new QuestDB instance starts with a single user, which is the built-in admin. The default built-in admin settings are:

  • Username: admin
  • Password: quest

It is strongly recommended that the built-in admin's password and all other default password are changed via QuestDB's server configuration before the instance is started. Please change both the admin's username and password.

The following property keys are used to configure the built-in admin in server.conf:

# only needed if the built-in admin has been disabled previously
# the admin is enabled by default
admin.user.enabled=true
# the built-in admin's user name and password
admin.user=myadmin
admin.password=mypwd

The built-in admin has all permissions granted by default. Its access cannot be modified. It is root.

After startup we can use the built-in admin to create new users, service accounts and groups. We can also grant permissions to them. It is recommended that the built-in admin is disabled in the configuration files after users and groups are setup.

The following property key is used to enable/disable the built-in admin in server.conf:

# disable built-in admin
admin.user.enabled=false

Permissions#

Permissions are the building blocks of access lists, and determine what a user can or cannot do. They can be granted to users, service accounts and groups, allowing them to access specific functionality.

GRANT SELECT, INSERT ON table1 TO group1;
GRANT CREATE USER TO user1;
SHOW PERMISSIONS user1; --user1 has been added to group1 earlier
permission table_name column_name grant_option origin
---------- ---------- ----------- ------------ ------
CREATE USER null null false G
SELECT table1 null false G
INSERT table1 null false G

Users belong to group1 can insert data into table1, and can also query the data from the table. user1 can create users in the database.

Permissions can be revoked from users and groups, which means losing their access to the given functionality:

REVOKE INSERT ON table1 FROM group1;
REVOKE CREATE USER FROM user1;
SHOW PERMISSIONS user1; --user1 has been added to group1 earlier
permission table_name column_name grant_option origin
---------- ---------- ----------- ------------ ------
SELECT table1 null false G

In this example, users who belong to group1 can no longer insert data into table1. But they can still run queries on the data stored in the table. And user1 can no longer create new users.

As admins we can grant or revoke access to operations performed on database objects. By database objects we mean tables, columns, users, service accounts, groups or the database itself as a whole. Hence, permissions can be granted to users or groups on different levels.

Let's take SELECT as an example, this permission can be granted on three different levels:

GRANT SELECT TO user1;
GRANT SELECT ON table1 TO user1;
GRANT SELECT ON table1(col1) TO user1;
  • When granted on database level, the user can run queries involving any data from any table of the database

  • When granted on table level, the user can query only specific tables on which the permission has been granted to them

  • When granted on column level, the user can query only specific columns of tables. It could happen that the user can access all data in some tables, but only some columns from other tables.

Depending on related functionality, some permissions do not make sense when granted on the table or column level. The granularity in which permissions can be granted is defined in QuestDB for each permission.

Table level permissions on the other hand can be granted only on database or table level. The functionality linked to a table level permission does not work on columns. Take DETACH PARTITION and ATTACH PARTITION as an example. Partitions of a table can be detached and re-attached only as a whole. It would not make sense to grant these permissions only on specific columns of a table.

GRANT ATTACH PARTITION TO user1;
GRANT ATTACH PARTITION ON table1 TO user1;

Other functionality is performed on the entire database, and is therefore not applicable to specific tables or columns of a table. A good example is taking a backup of the database, the permission BACKUP DATABASE can be granted only on database level:

GRANT BACKUP DATABASE TO user1;

Functionality related to user management is always granted on the database level. However, users are always able to manage their own passwords and tokens, and view the list of permissions granted to them. Users can also view the permissions of the groups and service accounts they are associated with.

Related SQL commands:

Permission level re-adjustment#

An interesting - and perhaps risky - property of granted high level permissions is that they implicitly provide access to database objects created in the future. For example, if a user has been granted SELECT permission on the database level, the user can query all tables in the database, and also will access any tables created in the future. Those tables will be part of the database too!

Let's look at an example:

CREATE TABLE table1...;
CREATE TABLE table2...;
CREATE TABLE table3...;
CREATE USER user1...;
GRANT SELECT TO user1;
CREATE TABLE table4...;
SHOW PERMISSIONS user1;
permission table_name column_name grant_option origin
---------- ---------- ----------- ------------ ------
SELECT null null false G

user1 has access to all four tables in the database.

However, if access is revoked on any of the tables, the permission is moved from the database to individual tables. That is because QuestDB does not maintain an exclude list. It is therefore not possible to grant a permission on the database level, and then exclude specific tables.

Revoking access even on a single table means that the permission level on which the permission has been granted is re-adjusted. We move from the database level to the table level. This results in not only losing access to the table from which access is revoked, but also losing access to all tables created in the future.

For example:

CREATE TABLE table1...;
CREATE TABLE table2...;
CREATE TABLE table3...;
CREATE USER user1...;
GRANT SELECT TO user1;
REVOKE SELECT ON table1 FROM user1;
CREATE TABLE table4...;
SHOW PERMISSIONS user1;
permission table_name column_name grant_option origin
---------- ---------- ----------- ------------ ------
SELECT table2 null false G
SELECT table3 null false G

Now user1 has access to table2 and table3 only. The revoke statement re-adjusted the database level permission to table level, meaning it revoked SELECT on database level and granted it to table2 and table3 only.

If we want the user to access the newly created table4, we must grant access explicitly:

GRANT SELECT ON table4 TO user1;

Permission re-adjustment can also happen when a permission is granted on table level, but then gets revoked on one or more columns.

An example of permission re-adjustment from table to column level:

CREATE TABLE table1 (col1 SYMBOL, col2 INT, col3 STRING);
CREATE USER user1...;
GRANT SELECT ON table1 TO user1;
REVOKE SELECT ON table1(col1) FROM user1;
ALTER TABLE table1 ADD COLUMN col4 DOUBLE;
SHOW PERMISSIONS user1;
permission table_name column_name grant_option origin
---------- ---------- ----------- ------------ ------
SELECT table1 col2 false G
SELECT table1 col3 false G

In the above example, revoking access on col1 triggers permission re-adjustment. Access is revoked on the table level and granted to col2 and col3 only. When col4 is added to the table, the user cannot access it. Access has to be granted explicitly, if needed.

GRANT SELECT ON table1(col4) TO user1;

Implicit permissions#

Since QuestDB is a time-series database, the designated timestamp column is treated on a special way. Some functionality, such as SAMPLE BY, LATEST ON or ASOF JOIN, require a designated timestamp. If a user can access only some columns of a table, but not the designated timestamp, then these operations would become unavailable to the user. It is something of a dependency.

As a solution, QuestDB derives permissions for the designated timestamp column based on the access granted to other columns of the table. If a user is granted SELECT or UPDATE permission to any of the columns of a table, the same permission is then granted to the designated timestamp column implicitly.

Let's look at an example:

CREATE TABLE table1 (col1 SYMBOL, col2 INT, col3 TIMESTAMP) timestamp(col3);
CREATE USER user1...;
GRANT SELECT ON table1(col1) TO user1;
SHOW PERMISSIONS user1;
permission table_name column_name grant_option origin
---------- ---------- ----------- ------------ ------
SELECT table1 col1 false G
SELECT table1 ts false I

The overall permissions on the designated timestamp column will be the union of the permissions granted to the column explicitly and implicitly:

GRANT UPDATE ON table1(ts) TO user1;
SHOW PERMISSIONS user1;
permission table_name column_name grant_option origin
---------- ---------- ----------- ------------ ------
SELECT table1 col1 false G
UPDATE table1 ts false G
SELECT table1 ts false I

Implicit permissions cannot be revoked directly from the designated timestamp column:

REVOKE SELECT, UPDATE ON table1(ts) FROM user1;
SHOW PERMISSIONS user1;
permission table_name column_name grant_option origin
---------- ---------- ----------- ------------ ------
SELECT table1 col1 false G
SELECT table1 ts false I

Grant verification#

It is possible to grant permission to non-existent users, service accounts or groups. These permissions will get picked up when the entity eventually gets created.

For example:

CREATE TABLE table1 (col1 SYMBOL, col2 INT);
GRANT SELECT ON table1 TO user1;
CREATE USER user1...;
SHOW PERMISSIONS user1;
permission table_name column_name grant_option origin
---------- ---------- ----------- ------------ ------
SELECT table1 null false G

Flexibility is great, but can lead to issues when a typo in the name of the entity occurs.

If we want to avoid problems caused by typos, we can use the WITH VERIFICATION option:

CREATE TABLE table1 (col1 SYMBOL, col2 INT);
GRANT SELECT ON table1 TO user1 WITH VERIFICATION;

The above will fail, because QuestDB will not find the user. This is especially useful for scripts.

If a user, service account or group is deleted and later re-created, permissions do not get reinstated.

Non-existent database objects#

Permissions can be granted not only to non-existent users and groups, but also on non-existent tables and columns.

This is useful in some situations. For example, when it is expected that the table or the column will be created automatically via InfluxDB Line Protocol (ILP):

GRANT SELECT ON table1 TO user1;
CREATE USER user1...;
SHOW PERMISSIONS user1;
permission table_name column_name grant_option origin
---------- ---------- ----------- ------------ ------

Permission is picked up after the table is created.

CREATE TABLE table1 (col1 SYMBOL, col2 INT);
SHOW PERMISSIONS user1;
permission table_name column_name grant_option origin
---------- ---------- ----------- ------------ ------
SELECT table1 null false G

When the table is deleted permissions disappear.

DROP TABLE table1;
SHOW PERMISSIONS user1;
permission table_name column_name grant_option origin
---------- ---------- ----------- ------------ ------

However, if a table with the same name is re-created, the permissions are re-instated:

CREATE TABLE table1 (col1 SYMBOL, col2 INT);
SHOW PERMISSIONS user1;
permission table_name column_name grant_option origin
---------- ---------- ----------- ------------ ------
SELECT table1 null false G

This can be useful in situations when a table is deleted only temporarily.

For example, when you need to remove some data from a table, and the data to be deleted is not aligned to partitions, so DROP PARTITION is not an option:

CREATE USER user1...;
CREATE TABLE table1 (col1 SYMBOL, col2 INT);
GRANT SELECT ON table1 TO user1;
CREATE TABLE tmp AS (SELECT * FROM table1 WHERE col2 != 42);
DROP TABLE table1;
RENAME TABLE tmp TO table1;
SHOW PERMISSIONS user1;
permission table_name column_name grant_option origin
---------- ---------- ----------- ------------ ------
SELECT table1 null false G

Reinstating permissions on the re-created table is not always desirable. If we want a clean start, we can delete the old table along with the permissions assigned to it.

This can be done by using the CASCADE PERMISSIONS option:

CREATE USER user1...;
CREATE TABLE table1(col1 SYMBOL, col2 INT);
GRANT SELECT ON table1 TO user1;
CREATE TABLE tmp AS (SELECT * FROM table1 WHERE col2 != 42);
DROP TABLE table1 CASCADE PERMISSIONS;
RENAME TABLE tmp TO table1;
SHOW PERMISSIONS user1;
permission table_name column_name grant_option origin
---------- ---------- ----------- ------------ ------
note

CASCADE PERMISSIONS is not implemented yet, but will be available soon!

The same is true for columns.

When a column is deleted and then re-created, permissions are re-instated.

Owner grants#

When a user creates a new table or adds a new column to an existing table, it gets owner permissions on the newly created database object.

If the user creates a table, the user automatically gets all table level permissions with the GRANT option on it.

If the user adds a new column to an existing table, the user automatically gets all column level permissions with the GRANT option on it.

In QuestDB ownership does not persist. This means that the user gets full control over the newly created table or column at the time of creating it, but if the permissions are later revoked, then the user cannot get it back without someone re-granting it to them.

SHOW commands#

There are a number of access control related SHOW commands in QuestDB.

We can list all users, service accounts and groups, which groups are associated with a user, which service accounts a user or the members of a group can assume; we can list their permissions and also view which authentication mode is enabled for users and service accounts.

However, this functionality is only available to the user if the necessary permissions are granted to them. When trying to list all users, service accounts or groups, QuestDB checks for the LIST USERS permission. When trying to view the groups, service accounts, permissions or authentication modes of an entity, QuestDB checks for the USER DETAILS permission.

The only exception is when the user is querying information related to themselves or to the groups/service accounts with which they are associated. In this case no permission is required. Anyone is allowed to check their own groups, service accounts, permissions, and the list of authentication methods enabled for them.

Special treatment of built-in admin#

The built-in admin is special because it is pre-configured in the system, and has all permissions granted on the database level, meaning it can do anything. It is root.

The access list of the built-in admin is hardcoded in the system, and cannot be changed. Any attempt to issue a GRANT or REVOKE statement involving the built-in admin is rejected by the database.

The SHOW PERMISSIONS command also treats the built-in admin differently. When trying to list the permissions of the built-in admin, nothing will be displayed.

note

When using QuestDB Cloud, the built-in admin is initially root, but permissions can be granted or revoked, and the user itself can be deleted. If the admin user password is updated from the QuestDB Cloud management interface, the admin user will be reset and it will become root again.

Additionally, all QuestDB Cloud instances have a built-in cloudadmin, which is exclusively used by the QuestDB internal automations. The cloudadmin user cannot be deleted, and its permissions cannot be granted or revoked.

Resetting the built-in admin (QuestDB Cloud only)#

As seen above, the admin user is protected on QuestDB Enterprise, but can be altered โ€” and even deleted โ€” on QuestDB Cloud. If you lose programatic access to your instance because you accidentally removed the admin user before creating new users, you can reset it in either of these ways:

Using password change (recommended)#

  1. Log into your QuestDB Cloud management interface.
  2. Find the instance where you need to reset admin and navigate to settings > Details.
  3. Click on Change and enter a new password for HTTP Basic Auth/PG Wire.
  4. Click Update, in moments your admin will be reset.

Using snapshots (longer downtime)#

  1. Log into your QuestDB Cloud management interface.
  2. Find the instance where you need to reset admin and take a snapshot. Please note all data you ingest from this point onwards will not be part of the snapshot, so you might want to stop data ingestion.
  3. Restore the snapshot into a new instance. As part of the provisioning, an admin user will be created with root permissions. At this point you can delete your old instance and keep working with the new one.

โญ Something missing? Page not helpful? Please suggest an edit on GitHub.