v.1.1.54362New Feature
Configuration Override for ClickHouse Server via Command Line
Configuration settings can be overridden in the command line when you runclickhouse-server. Example:clickhouse-server -- --logger.level=information.
Why it matters
This feature provides a convenient way to change configuration parameters temporarily without modifying configuration files, making it easier to adjust server behavior on startup for debugging or specific runtime needs.How to use it
Runclickhouse-server with the desired configuration overrides after a double dash. For example, to set the logger level to information, use:clickhouse-server -- --logger.level=information