mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-15 12:14:18 +00:00
a2214760c6
- changed config.xml/yaml files used by CH's own internal tests which are (hopefully) not sensitive to mark_cache_size being set or not - further occurrences exist but changing them seems a bad idea (e.g. because they are in customer-provided data)
35 lines
1.0 KiB
XML
35 lines
1.0 KiB
XML
<?xml version="1.0"?>
|
|
<clickhouse>
|
|
<logger>
|
|
<level>trace</level>
|
|
<log>/var/log/clickhouse-server/clickhouse-server.log</log>
|
|
<errorlog>/var/log/clickhouse-server/clickhouse-server.err.log</errorlog>
|
|
<size>1000M</size>
|
|
<count>10</count>
|
|
</logger>
|
|
|
|
<query_log>
|
|
<database>system</database>
|
|
<table>query_log</table>
|
|
<partition_by>toYYYYMM(event_date)</partition_by>
|
|
<flush_interval_milliseconds>1000</flush_interval_milliseconds>
|
|
</query_log>
|
|
|
|
<tcp_port>9000</tcp_port>
|
|
<listen_host>127.0.0.1</listen_host>
|
|
|
|
<openSSL>
|
|
<client>
|
|
<cacheSessions>true</cacheSessions>
|
|
<verificationMode>none</verificationMode>
|
|
<invalidCertificateHandler>
|
|
<name>AcceptCertificateHandler</name>
|
|
</invalidCertificateHandler>
|
|
</client>
|
|
</openSSL>
|
|
|
|
<max_concurrent_queries>500</max_concurrent_queries>
|
|
<path>./clickhouse/</path>
|
|
<users_config>users.xml</users_config>
|
|
</clickhouse>
|