v.23.3New Feature
Implement system.server_settings for Server Configurations
Implementsystem.server_settings(similar tosystem.settings), which will contain server configurations. #46550 (pufit).
Why it matters
This feature enables users to query and inspect ClickHouse server configuration parameters directly from SQL, allowing better visibility and management of server settings without needing to access configuration files or server internals.How to use it
Users can query thesystem.server_settings table using standard SQL SELECT statements, for example:SELECT * FROM system.server_settings;This will return the current server configuration settings and their values.