Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add doc for hash_join_v2 #18616

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Open
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions system-variables.md
Original file line number Diff line number Diff line change
Expand Up @@ -2807,6 +2807,26 @@ v5.0 后,用户仍可以单独修改以上系统变量(会有废弃警告)
- 这个变量用来设置 hash join 算法的并发度。
- 默认值 `-1` 表示使用 `tidb_executor_concurrency` 的值。

### `tidb_hash_join_version` <span class="version-mark">从 v8.4.0 版本开始引入</span>

> **警告:**
>
> 该变量控制的功能为实验特性,不建议在生产环境中使用。该功能可能会在未事先通知的情况下发生变化或删除。如果发现 bug,请在 GitHub 上提 [issue](https://github.com/pingcap/tidb/issues) 反馈。

- 作用域:SESSION | GLOBAL
- 是否持久化到集群:是
- 是否受 Hint [SET_VAR](/optimizer-hints.md#set_varvar_namevar_value) 控制:是
- 类型:枚举型
- 默认值:`legacy`
- 可选值:`legacy`, `optimized`
qiancai marked this conversation as resolved.
Show resolved Hide resolved
- 控制 TiDB 是否使用优化版本的 Hash Join 算子。默认值为 `legacy`,代表不使用优化版本。若设置为 `optimized`,TiDB 在执行 Hash Join 算子时将使用优化版本,以提升 Hash Join 性能。

> **注意:**
>
> - 目前,仅 Inner Join 和 Outer Join 类型的连接操作支持优化版本的 Hash Join。对于其他类型的连接操作,即使将该变量设成 `optimized`,TiDB 在执行 Hash Join 算子时也不会使用优化版本。
> - 目前,优化版本的 Hash Join 不支持在内存使用超限时落盘内存数据。
qiancai marked this conversation as resolved.
Show resolved Hide resolved


qiancai marked this conversation as resolved.
Show resolved Hide resolved
### `tidb_hashagg_final_concurrency`

> **警告:**
Expand Down