ydb icon indicating copy to clipboard operation
ydb copied to clipboard

Implement system table `.sys/config`

Open abyss7 opened this issue 5 months ago • 0 comments

This table should represent the config on the storage side.

Suggested struct is as follows:

CREATE TABLE config (
  Name String NOT NULL,
  Value String,
  Default String,
  Source String, -- path to config file, default, or whatever
);

It will help to understand how config values were formed and what are they.

abyss7 avatar Aug 28 '24 20:08 abyss7