mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-15 03:53:41 +00:00
b698a4ff65
This has been implemented by simply restarting http servers in case of http_handlers directive in configuration xml had been changed. But, for this I have to change the handlers interface to accept configuration separatelly, since the configuration that contains in the server is the configuration with which server had been started. Signed-off-by: Azat Khuzhin <a.khuzhin@semrush.com> Co-authored-by: Antonio Andelic
11 lines
538 B
XML
11 lines
538 B
XML
<yandex>
|
|
<listen_host remove="remove"/>
|
|
<include from_zk="/clickhouse/listen_hosts" />
|
|
<tcp_port from_zk="/clickhouse/ports/tcp" replace="replace" />
|
|
<http_port from_zk="/clickhouse/ports/http" replace="replace" />
|
|
<mysql_port from_zk="/clickhouse/ports/mysql" replace="replace" />
|
|
<postgresql_port from_zk="/clickhouse/ports/postgresql" replace="replace" />
|
|
<grpc_port from_zk="/clickhouse/ports/grpc" replace="replace" />
|
|
<http_handlers from_zk="/clickhouse/http_handlers" replace="replace" />
|
|
</yandex>
|