> ## Documentation Index
> Fetch the complete documentation index at: https://clickhouse.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# group_by_* 会话设置

> 位于 group_by_* 生成组中的 ClickHouse 会话设置。

export const SettingsInfoBlock = ({type, default_value, changeable_without_restart}) => {
  return <div className="not-prose" style={{
    display: "flex",
    flexWrap: "wrap",
    alignItems: "baseline",
    columnGap: "0.5rem",
    rowGap: "0.125rem",
    margin: "0.375rem 0",
    fontSize: "0.8125rem",
    lineHeight: "1.125rem"
  }}>
      <div style={{
    fontWeight: 600,
    opacity: 0.72
  }}>类型</div>
      <div style={{
    overflowWrap: "anywhere"
  }}>{type}</div>
      <div style={{
    fontWeight: 600,
    opacity: 0.72,
    marginInlineStart: "0.5rem"
  }}>默认值</div>
      <div style={{
    overflowWrap: "anywhere"
  }}>{default_value}</div>
      {changeable_without_restart && <div style={{
    fontWeight: 600,
    opacity: 0.72,
    marginInlineStart: "0.5rem"
  }}>
          无需重启即可更改
        </div>}
      {changeable_without_restart && <div style={{
    overflowWrap: "anywhere"
  }}>
          {changeable_without_restart}
        </div>}
    </div>;
};

这些设置可在 [system.settings](/docs/zh/reference/system-tables/settings) 中查看，并由 [源代码](https://github.com/ClickHouse/ClickHouse/blob/master/src/Core/Settings.cpp) 自动生成。

<div id="group_by_overflow_mode">
  ## group\_by\_overflow\_mode
</div>

<SettingsInfoBlock type="OverflowModeGroupBy" default_value="throw" />

设置当用于 聚合 的唯一键数量超过限制时的行为：

* `throw`：抛出异常
* `break`：停止执行查询并返回部分结果
* `any`：继续对已进入集合的键进行聚合，但不再向集合中添加新键。

使用 `any` 值可以执行 `GROUP BY` 的近似计算。这种近似计算的效果取决于数据的统计特性。

<div id="group_by_two_level_threshold">
  ## group\_by\_two\_level\_threshold
</div>

<SettingsInfoBlock type="UInt64" default_value="100000" />

键的数量达到多少时开始启用两级聚合。0 表示未设置该阈值。

<div id="group_by_two_level_threshold_bytes">
  ## group\_by\_two\_level\_threshold\_bytes
</div>

<SettingsInfoBlock type="UInt64" default_value="50000000" />

当聚合状态的大小达到多少字节时，开始使用两级聚合。0 表示未设置阈值。当至少一个阈值达到条件时，将使用两级聚合。

<div id="group_by_use_nulls">
  ## group\_by\_use\_nulls
</div>

<SettingsInfoBlock type="Bool" default_value="0" />

更改 [GROUP BY clause](/docs/zh/reference/statements/select/group-by) 处理聚合键类型的方式。
使用 `ROLLUP`、`CUBE` 或 `GROUPING SETS` 说明符时，某些聚合键可能不会用于生成某些结果行。
这些键对应的列会根据此设置，在相应行中填入默认值或 `NULL`。

Possible values:

* 0 — 使用聚合键类型的默认值来填补缺失值。
* 1 — ClickHouse 会按照 SQL 标准的方式执行 `GROUP BY`。聚合键的类型会转换为 [Nullable](/docs/zh/reference/data-types/nullable)。对于未使用相应聚合键的行，其对应列会填充为 [NULL](/docs/zh/reference/syntax#null)。

See also:

* [GROUP BY clause](/docs/zh/reference/statements/select/group-by)
