mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
33 lines
1.0 KiB
XML
33 lines
1.0 KiB
XML
<clickhouse>
|
|
<profiles>
|
|
<default>
|
|
<max_execution_time>10</max_execution_time>
|
|
<max_memory_usage>10G</max_memory_usage>
|
|
|
|
<!--
|
|
Otherwise we will get the TOO_MANY_SIMULTANEOUS_QUERIES errors,
|
|
they are ok, but complicate debugging.
|
|
-->
|
|
<table_function_remote_max_addresses>200</table_function_remote_max_addresses>
|
|
|
|
<!--
|
|
Don't let the fuzzer change this setting (I've actually seen it
|
|
do this before).
|
|
-->
|
|
<constraints>
|
|
<max_execution_time>
|
|
<max>10</max>
|
|
</max_execution_time>
|
|
|
|
<max_memory_usage>
|
|
<max>10G</max>
|
|
</max_memory_usage>
|
|
|
|
<table_function_remote_max_addresses>
|
|
<max>200</max>
|
|
</table_function_remote_max_addresses>
|
|
</constraints>
|
|
</default>
|
|
</profiles>
|
|
</clickhouse>
|