2020-04-08 14:22:25 +00:00
# 查询复杂性的限制 {#restrictions-on-query-complexity}
对查询复杂性的限制是设置的一部分。
它们被用来从用户界面提供更安全的执行。
几乎所有的限制只适用于选择。对于分布式查询处理,每个服务器上分别应用限制。
2018-11-30 19:26:35 +00:00
2020-03-20 18:20:59 +00:00
Restrictions on the «maximum amount of something» can take the value 0, which means «unrestricted».
2020-10-13 17:23:29 +00:00
大多数限制也有一个 ‘ overflow_mode’ 设置,这意味着超过限制时该怎么做。
它可以采用以下两个值之一: `throw` 或 `break` . 对聚合的限制(group_by_overflow_mode)也具有以下值 `any` .
2018-11-30 19:26:35 +00:00
`throw` – Throw an exception (default).
`break` – Stop executing the query and return the partial result, as if the source data ran out.
2020-04-30 18:19:18 +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.
2018-11-30 19:26:35 +00:00
2020-04-08 14:22:25 +00:00
## 只读 {#query-complexity-readonly}
2018-11-30 19:26:35 +00:00
2020-04-08 14:22:25 +00:00
值为0时, 可以执行任何查询。
如果值为1, 则只能执行读取请求( 如SELECT和SHOW) 。 禁止写入和更改设置(插入,设置)的请求。
值为2时, 可以处理读取查询( 选择、显示) 和更改设置( 设置) 。
2018-11-30 19:26:35 +00:00
2020-04-08 14:22:25 +00:00
启用只读模式后,您无法在当前会话中禁用它。
2018-11-30 19:26:35 +00:00
2020-04-08 14:22:25 +00:00
在HTTP接口中使用GET方法时, ‘ readonly = 1’ 自动设置。 换句话说, 对于修改数据的查询, 您只能使用POST方法。 您可以在POST正文或URL参数中发送查询本身。
2018-11-30 19:26:35 +00:00
2020-10-13 17:23:29 +00:00
## max_memory_usage {#settings_max_memory_usage}
2018-11-30 19:26:35 +00:00
2020-04-08 14:22:25 +00:00
用于在单个服务器上运行查询的最大RAM量。
2018-11-30 19:26:35 +00:00
2020-04-08 14:22:25 +00:00
在默认配置文件中, 最大值为10GB。
2018-11-30 19:26:35 +00:00
2020-04-08 14:22:25 +00:00
该设置不考虑计算机上的可用内存量或内存总量。
该限制适用于单个服务器中的单个查询。
您可以使用 `SHOW PROCESSLIST` 查看每个查询的当前内存消耗。
此外,还会跟踪每个查询的内存消耗峰值并将其写入日志。
2018-11-30 19:26:35 +00:00
2020-04-08 14:22:25 +00:00
不监视某些聚合函数的状态的内存使用情况。
2018-11-30 19:26:35 +00:00
2020-04-08 14:22:25 +00:00
未完全跟踪聚合函数的状态的内存使用情况 `min` , `max` , `any` , `anyLast` , `argMin` , `argMax` 从 `String` 和 `Array` 争论。
2018-11-30 19:26:35 +00:00
2020-04-08 14:22:25 +00:00
内存消耗也受到参数的限制 `max_memory_usage_for_user` 和 `max_memory_usage_for_all_queries` .
2018-11-30 19:26:35 +00:00
2020-10-13 17:23:29 +00:00
## max_memory_usage_for_user {#max-memory-usage-for-user}
2018-11-30 19:26:35 +00:00
2020-04-08 14:22:25 +00:00
用于在单个服务器上运行用户查询的最大RAM量。
2018-11-30 19:26:35 +00:00
2020-04-08 14:22:25 +00:00
默认值定义在 [设置。h ](https://github.com/ClickHouse/ClickHouse/blob/master/src/Interpreters/Settings.h#L244 ). 默认情况下,金额不受限制 (`max_memory_usage_for_user = 0`).
2018-11-30 19:26:35 +00:00
2020-10-13 17:23:29 +00:00
另请参阅说明 [max_memory_usage ](#settings_max_memory_usage ).
2018-11-30 19:26:35 +00:00
2020-10-13 17:23:29 +00:00
## max_memory_usage_for_all_queries {#max-memory-usage-for-all-queries}
2018-11-30 19:26:35 +00:00
2020-04-08 14:22:25 +00:00
用于在单个服务器上运行所有查询的最大RAM数量。
2018-11-30 19:26:35 +00:00
2020-04-08 14:22:25 +00:00
默认值定义在 [设置。h ](https://github.com/ClickHouse/ClickHouse/blob/master/src/Interpreters/Settings.h#L245 ). 默认情况下,金额不受限制 (`max_memory_usage_for_all_queries = 0`).
2018-11-30 19:26:35 +00:00
2020-10-13 17:23:29 +00:00
另请参阅说明 [max_memory_usage ](#settings_max_memory_usage ).
2018-11-30 19:26:35 +00:00
2020-10-13 17:23:29 +00:00
## max_rows_to_read {#max-rows-to-read}
2018-11-30 19:26:35 +00:00
2020-04-08 14:22:25 +00:00
可以在每个块(而不是每行)上检查以下限制。 也就是说,限制可以打破一点。
2018-11-30 19:26:35 +00:00
2020-04-08 14:22:25 +00:00
运行查询时可从表中读取的最大行数。
2018-11-30 19:26:35 +00:00
2020-10-13 17:23:29 +00:00
## max_bytes_to_read {#max-bytes-to-read}
2018-11-30 19:26:35 +00:00
2020-04-08 14:22:25 +00:00
运行查询时可以从表中读取的最大字节数(未压缩数据)。
2018-11-30 19:26:35 +00:00
2020-10-13 17:23:29 +00:00
## read_overflow_mode {#read-overflow-mode}
2018-11-30 19:26:35 +00:00
2020-04-08 14:22:25 +00:00
读取的数据量超过其中一个限制时该怎么办: ‘ throw’ 或 ‘ break’ . 默认情况下,扔。
2018-11-30 19:26:35 +00:00
2020-10-13 17:23:29 +00:00
## max_rows_to_group_by {#max-rows-to-group-by}
2018-11-30 19:26:35 +00:00
2020-04-08 14:22:25 +00:00
从聚合接收的唯一密钥的最大数量。 此设置允许您在聚合时限制内存消耗。
2018-11-30 19:26:35 +00:00
2020-10-13 17:23:29 +00:00
## group_by_overflow_mode {#group-by-overflow-mode}
2018-11-30 19:26:35 +00:00
2020-04-08 14:22:25 +00:00
当聚合的唯一键数超过限制时该怎么办: ‘ throw’ , ‘ break’ , 或 ‘ any’ . 默认情况下,扔。
使用 ‘ any’ 值允许您运行GROUP BY的近似值。 这种近似值的质量取决于数据的统计性质。
2018-11-30 19:26:35 +00:00
2020-10-13 17:23:29 +00:00
## max_rows_to_sort {#max-rows-to-sort}
2018-11-30 19:26:35 +00:00
2020-04-08 14:22:25 +00:00
排序前的最大行数。 这允许您在排序时限制内存消耗。
2018-11-30 19:26:35 +00:00
2020-10-13 17:23:29 +00:00
## max_bytes_to_sort {#max-bytes-to-sort}
2018-11-30 19:26:35 +00:00
2020-04-08 14:22:25 +00:00
排序前的最大字节数。
2018-11-30 19:26:35 +00:00
2020-10-13 17:23:29 +00:00
## sort_overflow_mode {#sort-overflow-mode}
2018-11-30 19:26:35 +00:00
2020-04-08 14:22:25 +00:00
如果排序前收到的行数超过其中一个限制,该怎么办: ‘ throw’ 或 ‘ break’ . 默认情况下,扔。
2018-11-30 19:26:35 +00:00
2020-10-13 17:23:29 +00:00
## max_result_rows {#max-result-rows}
2018-11-30 19:26:35 +00:00
2020-04-08 14:22:25 +00:00
限制结果中的行数。 还检查子查询,并在运行分布式查询的部分时在远程服务器上。
2018-11-30 19:26:35 +00:00
2020-10-13 17:23:29 +00:00
## max_result_bytes {#max-result-bytes}
2018-11-30 19:26:35 +00:00
2020-04-08 14:22:25 +00:00
限制结果中的字节数。 与之前的设置相同。
2018-11-30 19:26:35 +00:00
2020-10-13 17:23:29 +00:00
## result_overflow_mode {#result-overflow-mode}
2018-11-30 19:26:35 +00:00
2020-04-08 14:22:25 +00:00
如果结果的体积超过其中一个限制,该怎么办: ‘ throw’ 或 ‘ break’ . 默认情况下,扔。
使用 ‘ break’ 类似于使用限制。
2018-11-30 19:26:35 +00:00
2020-10-13 17:23:29 +00:00
## max_execution_time {#max-execution-time}
2018-11-30 19:26:35 +00:00
2020-04-08 14:22:25 +00:00
最大查询执行时间(以秒为单位)。
此时,不会检查其中一个排序阶段,也不会在合并和最终确定聚合函数时进行检查。
2018-11-30 19:26:35 +00:00
2020-10-13 17:23:29 +00:00
## timeout_overflow_mode {#timeout-overflow-mode}
2018-11-30 19:26:35 +00:00
2020-10-13 17:23:29 +00:00
如果查询的运行时间长于 ‘ max_execution_time’ : ‘ throw’ 或 ‘ break’ . 默认情况下,扔。
2018-11-30 19:26:35 +00:00
2020-10-13 17:23:29 +00:00
## min_execution_speed {#min-execution-speed}
2018-11-30 19:26:35 +00:00
2020-10-13 17:23:29 +00:00
以每秒行为单位的最小执行速度。 检查每个数据块时 ‘ timeout_before_checking_execution_speed’ 到期。 如果执行速度较低,则会引发异常。
2018-11-30 19:26:35 +00:00
2020-10-13 17:23:29 +00:00
## timeout_before_checking_execution_speed {#timeout-before-checking-execution-speed}
2018-11-30 19:26:35 +00:00
2020-10-13 17:23:29 +00:00
检查执行速度是不是太慢(不低于 ‘ min_execution_speed’ ) , 在指定的时间以秒为单位已过期之后。
2018-11-30 19:26:35 +00:00
2020-10-13 17:23:29 +00:00
## max_columns_to_read {#max-columns-to-read}
2018-11-30 19:26:35 +00:00
2020-04-08 14:22:25 +00:00
单个查询中可从表中读取的最大列数。 如果查询需要读取更多列,则会引发异常。
2018-11-30 19:26:35 +00:00
2020-10-13 17:23:29 +00:00
## max_temporary_columns {#max-temporary-columns}
2018-11-30 19:26:35 +00:00
2020-04-08 14:22:25 +00:00
运行查询时必须同时保留在RAM中的最大临时列数, 包括常量列。 如果有比这更多的临时列,它会引发异常。
2018-11-30 19:26:35 +00:00
2020-10-13 17:23:29 +00:00
## max_temporary_non_const_columns {#max-temporary-non-const-columns}
2018-11-30 19:26:35 +00:00
2020-10-13 17:23:29 +00:00
同样的事情 ‘ max_temporary_columns’ , 但不计数常数列。
2020-04-08 14:22:25 +00:00
请注意,常量列在运行查询时经常形成,但它们需要大约零计算资源。
2018-11-30 19:26:35 +00:00
2020-10-13 17:23:29 +00:00
## max_subquery_depth {#max-subquery-depth}
2018-11-30 19:26:35 +00:00
2020-04-08 14:22:25 +00:00
子查询的最大嵌套深度。 如果子查询更深,则会引发异常。 默认情况下, 100。
2018-11-30 19:26:35 +00:00
2020-10-13 17:23:29 +00:00
## max_pipeline_depth {#max-pipeline-depth}
2018-11-30 19:26:35 +00:00
2020-04-08 14:22:25 +00:00
最大管道深度。 对应于查询处理期间每个数据块经历的转换数。 在单个服务器的限制范围内计算。 如果管道深度较大,则会引发异常。 默认情况下, 1000。
2018-11-30 19:26:35 +00:00
2020-10-13 17:23:29 +00:00
## max_ast_depth {#max-ast-depth}
2018-11-30 19:26:35 +00:00
2020-04-08 14:22:25 +00:00
查询语法树的最大嵌套深度。 如果超出,将引发异常。
此时,在解析过程中不会对其进行检查,而是仅在解析查询之后进行检查。 也就是说,在分析过程中可以创建一个太深的语法树,但查询将失败。 默认情况下, 1000。
2018-11-30 19:26:35 +00:00
2020-10-13 17:23:29 +00:00
## max_ast_elements {#max-ast-elements}
2018-11-30 19:26:35 +00:00
2020-04-08 14:22:25 +00:00
查询语法树中的最大元素数。 如果超出,将引发异常。
与前面的设置相同,只有在解析查询后才会检查它。 默认情况下, 50,000。
2018-11-30 19:26:35 +00:00
2020-10-13 17:23:29 +00:00
## max_rows_in_set {#max-rows-in-set}
2018-11-30 19:26:35 +00:00
2020-04-08 14:22:25 +00:00
从子查询创建的IN子句中数据集的最大行数。
2018-11-30 19:26:35 +00:00
2020-10-13 17:23:29 +00:00
## max_bytes_in_set {#max-bytes-in-set}
2018-11-30 19:26:35 +00:00
2020-04-08 14:22:25 +00:00
从子查询创建的IN子句中的集合使用的最大字节数( 未压缩数据) 。
2018-11-30 19:26:35 +00:00
2020-10-13 17:23:29 +00:00
## set_overflow_mode {#set-overflow-mode}
2018-11-30 19:26:35 +00:00
2020-04-08 14:22:25 +00:00
当数据量超过其中一个限制时该怎么办: ‘ throw’ 或 ‘ break’ . 默认情况下,扔。
2018-11-30 19:26:35 +00:00
2020-10-13 17:23:29 +00:00
## max_rows_in_distinct {#max-rows-in-distinct}
2018-11-30 19:26:35 +00:00
2020-04-08 14:22:25 +00:00
使用DISTINCT时的最大不同行数。
2018-11-30 19:26:35 +00:00
2020-10-13 17:23:29 +00:00
## max_bytes_in_distinct {#max-bytes-in-distinct}
2018-11-30 19:26:35 +00:00
2020-04-08 14:22:25 +00:00
使用DISTINCT时哈希表使用的最大字节数。
2018-11-30 19:26:35 +00:00
2020-10-13 17:23:29 +00:00
## distinct_overflow_mode {#distinct-overflow-mode}
2018-11-30 19:26:35 +00:00
2020-04-08 14:22:25 +00:00
当数据量超过其中一个限制时该怎么办: ‘ throw’ 或 ‘ break’ . 默认情况下,扔。
2018-11-30 19:26:35 +00:00
2020-10-13 17:23:29 +00:00
## max_rows_to_transfer {#max-rows-to-transfer}
2018-11-30 19:26:35 +00:00
2020-04-08 14:22:25 +00:00
使用GLOBAL IN时, 可以传递到远程服务器或保存在临时表中的最大行数。
2018-11-30 19:26:35 +00:00
2020-10-13 17:23:29 +00:00
## max_bytes_to_transfer {#max-bytes-to-transfer}
2018-11-30 19:26:35 +00:00
2020-04-08 14:22:25 +00:00
使用GLOBAL IN时, 可以传递到远程服务器或保存在临时表中的最大字节数( 未压缩数据) 。
2018-11-30 19:26:35 +00:00
2020-10-13 17:23:29 +00:00
## transfer_overflow_mode {#transfer-overflow-mode}
2018-11-30 19:26:35 +00:00
2020-04-08 14:22:25 +00:00
当数据量超过其中一个限制时该怎么办: ‘ throw’ 或 ‘ break’ . 默认情况下,扔。
2018-11-30 19:26:35 +00:00
2020-10-13 17:23:29 +00:00
## max_rows_in_join {#settings-max_rows_in_join}
2020-05-06 19:28:06 +00:00
Limits the number of rows in the hash table that is used when joining tables.
2020-05-15 04:34:54 +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.
2020-05-06 19:28:06 +00:00
If a query contains multiple joins, ClickHouse checks this setting for every intermediate result.
2020-10-13 17:23:29 +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.
2020-05-06 19:28:06 +00:00
Possible values:
- Positive integer.
- 0 — Unlimited number of rows.
Default value: 0.
2020-10-13 17:23:29 +00:00
## max_bytes_in_join {#settings-max_bytes_in_join}
2020-05-06 19:28:06 +00:00
Limits the size in bytes of the hash table used when joining tables.
2020-05-15 04:34:54 +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 ).
2020-05-06 19:28:06 +00:00
If the query contains joins, ClickHouse checks this setting for every intermediate result.
2020-10-13 17:23:29 +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.
2020-05-06 19:28:06 +00:00
Possible values:
- Positive integer.
- 0 — Memory control is disabled.
Default value: 0.
2020-10-13 17:23:29 +00:00
## join_overflow_mode {#settings-join_overflow_mode}
2020-05-06 19:28:06 +00:00
Defines what action ClickHouse performs when any of the following join limits is reached:
2020-10-13 17:23:29 +00:00
- [max_bytes_in_join ](#settings-max_bytes_in_join )
- [max_rows_in_join ](#settings-max_rows_in_join )
2020-05-06 19:28:06 +00:00
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**
2020-05-15 04:34:54 +00:00
- [JOIN clause ](../../sql-reference/statements/select/join.md#select-join )
2020-05-06 19:28:06 +00:00
- [Join table engine ](../../engines/table-engines/special/join.md )
2020-10-13 17:23:29 +00:00
## max_bytes_before_external_group_by {#settings-max_bytes_before_external_group_by}
2020-05-06 19:28:06 +00:00
2020-05-15 04:34:54 +00:00
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 ).
2020-05-06 19:28:06 +00:00
Possible values:
2020-05-15 04:34:54 +00:00
- 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.
2020-05-06 19:28:06 +00:00
- 0 — `GROUP BY` in external memory disabled.
Default value: 0.
2020-04-08 14:22:25 +00:00
[原始文章 ](https://clickhouse.tech/docs/en/operations/settings/query_complexity/ ) <!--hide-->