ClickHouse/docker/test/fuzzer/query-fuzzer-tweaks-users.xml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
1.1 KiB
XML
Raw Normal View History

<clickhouse>
2020-07-13 15:16:34 +00:00
<profiles>
<default>
<max_execution_time>10</max_execution_time>
<!--
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>
2021-01-06 01:07:59 +00:00
2021-01-22 00:13:47 +00:00
<max_memory_usage>
2021-01-22 14:16:08 +00:00
<max>10G</max>
2021-01-22 00:13:47 +00:00
</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>
2020-07-13 15:16:34 +00:00
</default>
</profiles>
</clickhouse>