You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe:
Now, the configuration is a mess. Some are configured by toml file, and some are recorded in the dbms/src/Interpreters/Settings.h. We initialize components by global_context and the default value has been decided in compiler time, even if the configuration has not been loaded, components can run smoothly.
There are cause some potential risks:
Some components initialize with default settings rather than the configuration in the input configuration file.
The configuration has changed during running, but we can not perceive it.
Describe the feature you'd like:
We need a unified configuration management framework in order to
manage the configuration of different components together
real-time awareness of the configuration.
an interface to get the configuration for users
Milestone
collect and classify all the configuration
add a controller to manage configuration globally
use the controller in all tiflash components
The text was updated successfully, but these errors were encountered:
Feature Request
Is your feature request related to a problem? Please describe:
Now, the configuration is a mess. Some are configured by toml file, and some are recorded in the
dbms/src/Interpreters/Settings.h
. We initialize components byglobal_context
and the default value has been decided in compiler time, even if the configuration has not been loaded, components can run smoothly.There are cause some potential risks:
Describe the feature you'd like:
We need a unified configuration management framework in order to
Milestone
The text was updated successfully, but these errors were encountered: