mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
38 lines
1.2 KiB
XML
38 lines
1.2 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>
|
|
|
|
<!-- Analyzer is unstable, not ready for testing. -->
|
|
<allow_experimental_analyzer>
|
|
<readonly/>
|
|
</allow_experimental_analyzer>
|
|
|
|
<table_function_remote_max_addresses>
|
|
<max>200</max>
|
|
</table_function_remote_max_addresses>
|
|
</constraints>
|
|
</default>
|
|
</profiles>
|
|
</clickhouse>
|