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 mintso config parameters #18997

Merged
merged 7 commits into from
Nov 20, 2024
Merged
Changes from 1 commit
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
9 changes: 9 additions & 0 deletions tiflash/tiflash-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,15 @@ delta_index_cache_size = 0
## 从 v7.4.0 引入,表示是否开启 TiFlash 资源管控功能。当设置为 true 时,TiFlash 会使用 Pipeline Model 执行模型。
enable_resource_control = true

## 从 v6.0.0 引入,表示一个 resource group 中最多可使用的线程数量,默认值为 5000
task_scheduler_thread_soft_limit = 5000

## 从 v6.0.0 引入,表示全局最多可使用的线程数量,默认值为 10000
task_scheduler_thread_hard_limit = 10000

## 从 v6.4.0 引入,表示 TiFlash 实例同时运行的 query 数量,默认值为 0,即两倍 vcpu 数量
task_scheduler_active_set_soft_limit = 0

## 安全相关配置,从 v4.0.5 开始生效
[security]
## 从 v5.0 引入,控制是否开启日志脱敏。可选值为 `true`、`false`、`"on"`、`"off"` 和 `"marker"`。其中,`"on"`、`"off"` 和 `"marker"` 从 v8.2.0 开始支持。
Expand Down