ClickHouse/docs/en/operations/settings/query_complexity.md

249 lines
10 KiB
Markdown
Raw Normal View History

# Restrictions on query complexity
2017-04-27 07:56:29 +00:00
Restrictions on query complexity are part of the settings.
They are used in order 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.
ClickHouse checks the restrictions for data parts, not for each row. It means that you can exceed the value of restriction with a size of the data part.
2017-04-03 19:49:50 +00:00
2017-04-27 07:56:29 +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
`any (only for group_by_overflow_mode)` Continuing aggregation for the keys that got into the set, but don't 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
2017-04-27 07:56:29 +00:00
The setting doesn't consider the volume of available memory or the total volume of memory on the machine.
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.
2017-04-27 07:56:29 +00:00
In addition, 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_memory_usage_for_all_queries`.
## max_memory_usage_for_user
The maximum amount of RAM to use for running a user's queries on a single server.
Default values are defined in [Settings.h](https://github.com/yandex/ClickHouse/blob/master/dbms/src/Interpreters/Settings.h#L244). By default, the amount is not restricted (`max_memory_usage_for_user = 0`).
See also the description of [max_memory_usage](#settings_max_memory_usage).
2018-04-23 06:20:21 +00:00
## max_memory_usage_for_all_queries
The maximum amount of RAM to use for running all queries on a single server.
2017-04-03 19:49:50 +00:00
2018-04-23 06:20:21 +00:00
Default values are defined in [Settings.h](https://github.com/yandex/ClickHouse/blob/master/dbms/src/Interpreters/Settings.h#L245). By default, the amount is not restricted (`max_memory_usage_for_all_queries = 0`).
See also the description of [max_memory_usage](#settings_max_memory_usage).
## 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.
When running a query in multiple threads, the following restrictions apply to each thread separately.
2017-04-03 19:49:50 +00:00
2017-04-27 07:56:29 +00:00
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
2017-04-27 07:56:29 +00:00
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
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
2017-04-03 19:49:50 +00:00
2017-04-27 07:56:29 +00:00
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
What to do when the number of unique keys for aggregation exceeds the limit: 'throw', 'break', or 'any'. By default, throw.
2017-04-27 07:56:29 +00:00
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_rows_to_sort
2017-04-27 07:56:29 +00:00
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
2017-04-27 07:56:29 +00:00
Maximum number of bytes before sorting.
2017-04-03 19:49:50 +00:00
## sort_overflow_mode
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
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
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
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.
## 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
What to do if the query is run longer than 'max_execution_time': 'throw' or 'break'. By default, throw.
## min_execution_speed
2017-04-03 19:49:50 +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
2019-03-04 02:09:44 +00:00
## min_execution_speed_bytes
2019-02-18 03:30:54 +00:00
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.
## max_execution_speed
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-03-04 02:09:44 +00:00
## max_execution_speed_bytes
2019-02-18 03:30:54 +00:00
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.
## timeout_before_checking_execution_speed
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
2017-04-03 19:49:50 +00:00
2017-04-27 07:56:29 +00:00
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
2017-04-27 07:56:29 +00:00
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
2017-04-27 07:56:29 +00:00
The same thing as 'max_temporary_columns', but without counting constant columns.
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
Maximum nesting depth of subqueries. If subqueries are deeper, an exception is thrown. By default, 100.
## 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
Maximum nesting depth of a query syntactic tree. If exceeded, an exception is thrown.
At this time, it isn't 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
2017-04-03 19:49:50 +00:00
2017-04-27 07:56:29 +00:00
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
2017-04-03 19:49:50 +00:00
2017-04-27 07:56:29 +00:00
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
2017-04-27 07:56:29 +00:00
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
What to do when the amount of data exceeds one of the limits: 'throw' or 'break'. By default, throw.
## max_rows_in_distinct
2017-04-03 19:49:50 +00:00
2017-04-27 07:56:29 +00:00
Maximum number of different rows when using DISTINCT.
2017-04-03 19:49:50 +00:00
## max_bytes_in_distinct
2017-04-27 07:56:29 +00:00
Maximum number of bytes used by a hash table when using DISTINCT.
2017-04-03 19:49:50 +00:00
## distinct_overflow_mode
What to do when the amount of data exceeds one of the limits: 'throw' or 'break'. By default, throw.
## max_rows_to_transfer
2017-04-03 19:49:50 +00:00
2017-04-27 07:56:29 +00:00
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
2017-04-27 07:56:29 +00:00
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
What to do when the amount of data exceeds one of the limits: 'throw' or 'break'. By default, throw.
2019-05-14 13:11:23 +00:00
## max_rows_in_join {#settings-max_rows_in_join}
Limits number of rows in the hash table that is used when joining tables.
This settings applies to [SELECT ... JOIN](../../query_language/select.md#select-join) operations and [Join engine](../table_engines/join.md) functioning.
ClickHouse can proceed with different actions when the limit is reached. Use the [join_overflow_mode](#settings-join_overflow_mode) settings to choose the action.
Possible values:
- Positive integers.
- 0. Memory control is disabled.
Default value: 0.
## max_bytes_in_join {#settings-max_bytes_in_join}
Limits number of bytes in the hash table that is used when joining tables.
This settings applies to [SELECT ... JOIN](../../query_language/select.md#select-join) operations and the [Join table engine](../table_engines/join.md) functioning.
ClickHouse can proceed with different actions when the limit is reached. Use the [join_overflow_mode](#settings-join_overflow_mode) settings to choose the action.
Possible values:
- Positive integers.
- 0. Memory control is disabled.
Default value: 0.
## join_overflow_mode {#settings-join_overflow_mode}
Defines an action that ClickHouse performs, when the corresponding limit is reached.
Controlled limits:
- [max_bytes_in_join](#settings-max_bytes_in_join)
- [max_rows_in_join](#settings-max_rows_in_join)
Possible values:
- `THROW` — ClickHouse throws an exception and breaks operation.
- `BREAK` — ClickHouse breaks operation and doesn't throw an exception.
Default value: `THROW`.
**See Also**
- [SELECT ... JOIN](../../query_language/select.md#select-join)
- [Join engine](../table_engines/join.md)
[Original article](https://clickhouse.yandex/docs/en/operations/settings/query_complexity/) <!--hide-->