djbobo
djbobo

Reputation: 547

Can you make table read-only in QuestDB?

I have few big historical data tables in QuestDB and don't want to accidentally modify data in it.

Is there a way to make table locked or read-only in QuestDB?

Upvotes: 1

Views: 163

Answers (1)

Doncarleone512
Doncarleone512

Reputation: 402

You cannot have any security / permissions over the tables in QuestDB.

As a workaround however you can file system security and allow only read only access to the files in the table folders. Directory structure is very simple in QustDB

root/
       conf/
       db/
          tableA/
          tableB/
          ...

Upvotes: 2

Related Questions