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 #19452

Merged
merged 6 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 @@ -264,6 +264,15 @@ delta_index_cache_size = 0
## New in v7.4.0. This item controls whether to enable the TiFlash resource control feature. When it is set to true, TiFlash uses the pipeline execution model.
enable_resource_control = true

## New in v6.0.0. This item is used for [MinTSO scheduler](/tiflash/tiflash-mintso-scheduler.md) and specifies the max number of threads that one resource group could use. The default value is 5000.
task_scheduler_thread_soft_limit = 5000

## New in v6.0.0. This item is used for [MinTSO scheduler](/tiflash/tiflash-mintso-scheduler.md) and specifies the max number of threads in global scope. The default value is 10000.
task_scheduler_thread_hard_limit = 10000

## New in v6.4.0. This item is used for [MinTSO scheduler](/tiflash/tiflash-mintso-scheduler.md) and specifies the max number of running queries in a TiFlash instance. The default value is 0 which means two times the vcpu.
task_scheduler_active_set_soft_limit = 0

## Security settings take effect starting from v4.0.5.
[security]
## New in v5.0. This configuration item enables or disables log redaction. Value options: `true`, `false`, `"on"`, `"off"`, and `"marker"`. The `"on"`, `"off"`, and `"marker"` options are introduced in v8.2.0.
Expand Down
Loading