ClickHouse/docs/en/operations/settings/query-complexity.md

291 lines
13 KiB
Markdown
Raw Normal View History

2020-04-03 13:23:32 +00:00
---
toc_priority: 59
toc_title: Restrictions on Query Complexity
---
# Restrictions on Query Complexity {#restrictions-on-query-complexity}
2017-04-27 07:56:29 +00:00
Restrictions on query complexity are part of the settings.
2020-03-19 08:31:06 +00:00
They are used to provide safer execution from the user interface.
Almost all the restrictions only apply to `SELECT`. For distributed query processing, restrictions are applied on each server separately.
2020-03-19 08:31:06 +00:00
ClickHouse checks the restrictions for data parts, not for each row. It means that you can exceed the value of restriction with the size of the data part.
2017-04-03 19:49:50 +00:00
2020-03-20 10:10:48 +00:00
Restrictions on the “maximum amount of something” can take the value 0, which means “unrestricted”.
Most restrictions also have an overflow\_mode setting, meaning what to do when the limit is exceeded.
It can take one of two values: `throw` or `break`. Restrictions on aggregation (group\_by\_overflow\_mode) also have the value `any`.
`throw` Throw an exception (default).
`break` Stop executing the query and return the partial result, as if the source data ran out.
2017-04-03 19:49:50 +00:00
2020-03-20 10:10:48 +00:00
`any (only for group_by_overflow_mode)` Continuing aggregation for the keys that got into the set, but dont add new keys to the set.
2017-04-03 19:49:50 +00:00
## max\_memory\_usage {#settings_max_memory_usage}
2018-04-23 06:20:21 +00:00
The maximum amount of RAM to use for running a query on a single server.
In the default configuration file, the maximum is 10 GB.
2017-04-03 19:49:50 +00:00
2020-03-20 10:10:48 +00:00
The setting doesnt consider the volume of available memory or the total volume of memory on the machine.
2017-04-27 07:56:29 +00:00
The restriction applies to a single query within a single server.
2018-04-23 06:20:21 +00:00
You can use `SHOW PROCESSLIST` to see the current memory consumption for each query.
2020-03-19 08:31:06 +00:00
Besides, the peak memory consumption is tracked for each query and written to the log.
2017-04-03 19:49:50 +00:00
2018-04-23 06:20:21 +00:00
Memory usage is not monitored for the states of certain aggregate functions.
Memory usage is not fully tracked for states of the aggregate functions `min`, `max`, `any`, `anyLast`, `argMin`, `argMax` from `String` and `Array` arguments.
Memory consumption is also restricted by the parameters `max_memory_usage_for_user` and [max\_server\_memory\_usage](../../operations/server-configuration-parameters/settings.md#max_server_memory_usage).
2018-04-23 06:20:21 +00:00
## max\_memory\_usage\_for\_user {#max-memory-usage-for-user}
2018-04-23 06:20:21 +00:00
2020-03-20 10:10:48 +00:00
The maximum amount of RAM to use for running a users queries on a single server.
2018-04-23 06:20:21 +00:00
2020-04-03 15:14:31 +00:00
Default values are defined in [Settings.h](https://github.com/ClickHouse/ClickHouse/blob/master/src/Core/Settings.h#L288). By default, the amount is not restricted (`max_memory_usage_for_user = 0`).
2018-04-23 06:20:21 +00:00
2020-03-20 10:10:48 +00:00
See also the description of [max\_memory\_usage](#settings_max_memory_usage).
2018-04-23 06:20:21 +00:00
## max\_rows\_to\_read {#max-rows-to-read}
2017-04-03 19:49:50 +00:00
2017-04-27 07:56:29 +00:00
The following restrictions can be checked on each block (instead of on each row). That is, the restrictions can be broken a little.
2017-04-03 19:49:50 +00:00
2020-03-19 08:31:06 +00:00
A maximum number of rows that can be read from a table when running a query.
2017-04-03 19:49:50 +00:00
## max\_bytes\_to\_read {#max-bytes-to-read}
2020-03-19 08:31:06 +00:00
A maximum number of bytes (uncompressed data) that can be read from a table when running a query.
2017-04-03 19:49:50 +00:00
## read\_overflow\_mode {#read-overflow-mode}
2020-03-20 10:10:48 +00:00
What to do when the volume of data read exceeds one of the limits: throw or break. By default, throw.
## max\_rows\_to\_group\_by {#settings-max-rows-to-group-by}
2017-04-03 19:49:50 +00:00
2020-03-19 08:31:06 +00:00
A maximum number of unique keys received from aggregation. This setting lets you limit memory consumption when aggregating.
2017-04-03 19:49:50 +00:00
## group\_by\_overflow\_mode {#group-by-overflow-mode}
2020-03-20 10:10:48 +00:00
What to do when the number of unique keys for aggregation exceeds the limit: throw, break, or any. By default, throw.
Using the any value lets you run an approximation of GROUP BY. The quality of this approximation depends on the statistical nature of the data.
2017-04-03 19:49:50 +00:00
## max\_bytes\_before\_external\_group\_by {#settings-max_bytes_before_external_group_by}
Enables or disables execution of `GROUP BY` clauses in external memory. See [GROUP BY in external memory](../../sql-reference/statements/select/group-by.md#select-group-by-in-external-memory).
Possible values:
- Maximum volume of RAM (in bytes) that can be used by the single [GROUP BY](../../sql-reference/statements/select/group-by.md#select-group-by-clause) operation.
- 0 — `GROUP BY` in external memory disabled.
Default value: 0.
## max\_rows\_to\_sort {#max-rows-to-sort}
2020-03-19 08:31:06 +00:00
A maximum number of rows before sorting. This allows you to limit memory consumption when sorting.
2017-04-03 19:49:50 +00:00
## max\_bytes\_to\_sort {#max-bytes-to-sort}
2020-03-19 08:31:06 +00:00
A maximum number of bytes before sorting.
2017-04-03 19:49:50 +00:00
## sort\_overflow\_mode {#sort-overflow-mode}
2020-03-20 10:10:48 +00:00
What to do if the number of rows received before sorting exceeds one of the limits: throw or break. By default, throw.
## max\_result\_rows {#setting-max_result_rows}
2017-04-03 19:49:50 +00:00
2017-04-27 07:56:29 +00:00
Limit on the number of rows in the result. Also checked for subqueries, and on remote servers when running parts of a distributed query.
2017-04-03 19:49:50 +00:00
## max\_result\_bytes {#max-result-bytes}
2017-04-27 07:56:29 +00:00
Limit on the number of bytes in the result. The same as the previous setting.
2017-04-03 19:49:50 +00:00
## result\_overflow\_mode {#result-overflow-mode}
2020-03-20 10:10:48 +00:00
What to do if the volume of the result exceeds one of the limits: throw or break. By default, throw.
Using break is similar to using LIMIT. `Break` interrupts execution only at the block level. This means that amount of returned rows is greater than [max\_result\_rows](#setting-max_result_rows), multiple of [max\_block\_size](../../operations/settings/settings.md#setting-max_block_size) and depends on [max\_threads](../../operations/settings/settings.md#settings-max_threads).
Example:
2020-03-20 10:10:48 +00:00
``` sql
SET max_threads = 3, max_block_size = 3333;
SET max_result_rows = 3334, result_overflow_mode = 'break';
SELECT *
FROM numbers_mt(100000)
FORMAT Null;
```
Result:
2020-03-20 10:10:48 +00:00
``` text
6666 rows in set. ...
```
## max\_execution\_time {#max-execution-time}
2017-04-03 19:49:50 +00:00
2017-04-27 07:56:29 +00:00
Maximum query execution time in seconds.
At this time, it is not checked for one of the sorting stages, or when merging and finalizing aggregate functions.
2017-04-03 19:49:50 +00:00
## timeout\_overflow\_mode {#timeout-overflow-mode}
2020-03-20 10:10:48 +00:00
What to do if the query is run longer than max\_execution\_time: throw or break. By default, throw.
## min\_execution\_speed {#min-execution-speed}
2017-04-03 19:49:50 +00:00
2020-03-20 10:10:48 +00:00
Minimal execution speed in rows per second. Checked on every data block when timeout\_before\_checking\_execution\_speed expires. If the execution speed is lower, an exception is thrown.
2017-04-03 19:49:50 +00:00
## min\_execution\_speed\_bytes {#min-execution-speed-bytes}
2019-02-18 03:30:54 +00:00
2020-03-20 10:10:48 +00:00
A minimum number of execution bytes per second. Checked on every data block when timeout\_before\_checking\_execution\_speed expires. If the execution speed is lower, an exception is thrown.
2019-02-18 03:30:54 +00:00
## max\_execution\_speed {#max-execution-speed}
2019-02-18 03:30:54 +00:00
2020-03-20 10:10:48 +00:00
A maximum number of execution rows per second. Checked on every data block when timeout\_before\_checking\_execution\_speed expires. If the execution speed is high, the execution speed will be reduced.
2019-02-18 03:30:54 +00:00
## max\_execution\_speed\_bytes {#max-execution-speed-bytes}
2019-02-18 03:30:54 +00:00
2020-03-20 10:10:48 +00:00
A maximum number of execution bytes per second. Checked on every data block when timeout\_before\_checking\_execution\_speed expires. If the execution speed is high, the execution speed will be reduced.
2019-02-18 03:30:54 +00:00
## timeout\_before\_checking\_execution\_speed {#timeout-before-checking-execution-speed}
2020-03-20 10:10:48 +00:00
Checks that execution speed is not too slow (no less than min\_execution\_speed), after the specified time in seconds has expired.
## max\_columns\_to\_read {#max-columns-to-read}
2017-04-03 19:49:50 +00:00
2020-03-19 08:31:06 +00:00
A maximum number of columns that can be read from a table in a single query. If a query requires reading a greater number of columns, it throws an exception.
2017-04-03 19:49:50 +00:00
## max\_temporary\_columns {#max-temporary-columns}
2020-03-19 08:31:06 +00:00
A maximum number of temporary columns that must be kept in RAM at the same time when running a query, including constant columns. If there are more temporary columns than this, it throws an exception.
2017-04-03 19:49:50 +00:00
## max\_temporary\_non\_const\_columns {#max-temporary-non-const-columns}
2020-03-20 10:10:48 +00:00
The same thing as max\_temporary\_columns, but without counting constant columns.
2017-04-27 07:56:29 +00:00
Note that constant columns are formed fairly often when running a query, but they require approximately zero computing resources.
2017-04-03 19:49:50 +00:00
## max\_subquery\_depth {#max-subquery-depth}
Maximum nesting depth of subqueries. If subqueries are deeper, an exception is thrown. By default, 100.
## max\_pipeline\_depth {#max-pipeline-depth}
2017-04-03 19:49:50 +00:00
2017-04-27 07:56:29 +00:00
Maximum pipeline depth. Corresponds to the number of transformations that each data block goes through during query processing. Counted within the limits of a single server. If the pipeline depth is greater, an exception is thrown. By default, 1000.
2017-04-03 19:49:50 +00:00
## max\_ast\_depth {#max-ast-depth}
Maximum nesting depth of a query syntactic tree. If exceeded, an exception is thrown.
2020-03-20 10:10:48 +00:00
At this time, it isnt checked during parsing, but only after parsing the query. That is, a syntactic tree that is too deep can be created during parsing, but the query will fail. By default, 1000.
## max\_ast\_elements {#max-ast-elements}
2017-04-03 19:49:50 +00:00
2020-03-19 08:31:06 +00:00
A maximum number of elements in a query syntactic tree. If exceeded, an exception is thrown.
2019-01-31 12:23:18 +00:00
In the same way as the previous setting, it is checked only after parsing the query. By default, 50,000.
## max\_rows\_in\_set {#max-rows-in-set}
2017-04-03 19:49:50 +00:00
2020-03-19 08:31:06 +00:00
A maximum number of rows for a data set in the IN clause created from a subquery.
2017-04-03 19:49:50 +00:00
## max\_bytes\_in\_set {#max-bytes-in-set}
2020-03-19 08:31:06 +00:00
A maximum number of bytes (uncompressed data) used by a set in the IN clause created from a subquery.
2017-04-03 19:49:50 +00:00
## set\_overflow\_mode {#set-overflow-mode}
2020-03-20 10:10:48 +00:00
What to do when the amount of data exceeds one of the limits: throw or break. By default, throw.
## max\_rows\_in\_distinct {#max-rows-in-distinct}
2017-04-03 19:49:50 +00:00
2020-03-19 08:31:06 +00:00
A maximum number of different rows when using DISTINCT.
2017-04-03 19:49:50 +00:00
## max\_bytes\_in\_distinct {#max-bytes-in-distinct}
2020-03-19 08:31:06 +00:00
A maximum number of bytes used by a hash table when using DISTINCT.
2017-04-03 19:49:50 +00:00
## distinct\_overflow\_mode {#distinct-overflow-mode}
2020-03-20 10:10:48 +00:00
What to do when the amount of data exceeds one of the limits: throw or break. By default, throw.
## max\_rows\_to\_transfer {#max-rows-to-transfer}
2017-04-03 19:49:50 +00:00
2020-03-19 08:31:06 +00:00
A maximum number of rows that can be passed to a remote server or saved in a temporary table when using GLOBAL IN.
2017-04-03 19:49:50 +00:00
## max\_bytes\_to\_transfer {#max-bytes-to-transfer}
2020-03-19 08:31:06 +00:00
A maximum number of bytes (uncompressed data) that can be passed to a remote server or saved in a temporary table when using GLOBAL IN.
2017-04-03 19:49:50 +00:00
## transfer\_overflow\_mode {#transfer-overflow-mode}
2020-03-20 10:10:48 +00:00
What to do when the amount of data exceeds one of the limits: throw or break. By default, throw.
## max\_rows\_in\_join {#settings-max_rows_in_join}
2019-05-14 13:11:23 +00:00
2019-05-15 07:16:48 +00:00
Limits the number of rows in the hash table that is used when joining tables.
2019-05-14 13:11:23 +00:00
This settings applies to [SELECT … JOIN](../../sql-reference/statements/select/join.md#select-join) operations and the [Join](../../engines/table-engines/special/join.md) table engine.
2019-05-14 13:11:23 +00:00
If a query contains multiple joins, ClickHouse checks this setting for every intermediate result.
2020-03-20 10:10:48 +00:00
ClickHouse can proceed with different actions when the limit is reached. Use the [join\_overflow\_mode](#settings-join_overflow_mode) setting to choose the action.
2019-05-14 13:11:23 +00:00
Possible values:
- Positive integer.
- 0 — Unlimited number of rows.
2019-05-14 13:11:23 +00:00
Default value: 0.
## max\_bytes\_in\_join {#settings-max_bytes_in_join}
2019-05-14 13:11:23 +00:00
Limits the size in bytes of the hash table used when joining tables.
2019-05-14 13:11:23 +00:00
This settings applies to [SELECT … JOIN](../../sql-reference/statements/select/join.md#select-join) operations and [Join table engine](../../engines/table-engines/special/join.md).
2019-05-14 13:11:23 +00:00
If the query contains joins, ClickHouse checks this setting for every intermediate result.
2020-03-20 10:10:48 +00:00
ClickHouse can proceed with different actions when the limit is reached. Use [join\_overflow\_mode](#settings-join_overflow_mode) settings to choose the action.
2019-05-14 13:11:23 +00:00
Possible values:
- Positive integer.
- 0 — Memory control is disabled.
2019-05-14 13:11:23 +00:00
Default value: 0.
## join\_overflow\_mode {#settings-join_overflow_mode}
2019-05-14 13:11:23 +00:00
Defines what action ClickHouse performs when any of the following join limits is reached:
2019-05-14 13:11:23 +00:00
- [max\_bytes\_in\_join](#settings-max_bytes_in_join)
- [max\_rows\_in\_join](#settings-max_rows_in_join)
2019-05-14 13:11:23 +00:00
Possible values:
- `THROW` — ClickHouse throws an exception and breaks operation.
- `BREAK` — ClickHouse breaks operation and doesnt throw an exception.
2019-05-14 13:11:23 +00:00
Default value: `THROW`.
**See Also**
- [JOIN clause](../../sql-reference/statements/select/join.md#select-join)
- [Join table engine](../../engines/table-engines/special/join.md)
2019-05-14 13:11:23 +00:00
## max\_partitions\_per\_insert\_block {#max-partitions-per-insert-block}
Limits the maximum number of partitions in a single inserted block.
- Positive integer.
- 0 — Unlimited number of partitions.
Default value: 100.
**Details**
When inserting data, ClickHouse calculates the number of partitions in the inserted block. If the number of partitions is more than `max_partitions_per_insert_block`, ClickHouse throws an exception with the following text:
2020-03-20 10:10:48 +00:00
> “Too many partitions for single INSERT block (more than” + toString(max\_parts) + “). The limit is controlled by max\_partitions\_per\_insert\_block setting. A large number of partitions is a common misconception. It will lead to severe negative performance impact, including slow server startup, slow INSERT queries and slow SELECT queries. Recommended total number of partitions for a table is under 1000..10000. Please note, that partitioning is not intended to speed up SELECT queries (ORDER BY key is sufficient to make range queries fast). Partitions are intended for data manipulation (DROP PARTITION, etc).”
2020-01-30 10:34:55 +00:00
[Original article](https://clickhouse.tech/docs/en/operations/settings/query_complexity/) <!--hide-->