v.24.7Improvement
Add Config Option for ClickHouse Reload Interval
Add new option to config <config_reload_interval_ms> which allow to specify how often clickhouse will reload config. #65545 (alesapin).Why it matters
This feature allows users to control the frequency at which ClickHouse reloads its configuration files. It helps in environments where frequent configuration changes occur and automatic reloading without manual intervention is desired, improving operational efficiency.How to use it
Set the<config_reload_interval_ms> option in the ClickHouse server configuration file to the desired interval in milliseconds for automatic config reloads. For example:<config_reload_interval_ms>60000</config_reload_interval_ms>This will reload the configuration every 60 seconds.