diff --git a/dynamic-config.md b/dynamic-config.md index 1b5d8a0e53cab..f9f83caca9a26 100644 --- a/dynamic-config.md +++ b/dynamic-config.md @@ -225,6 +225,11 @@ The following TiKV configuration items can be modified dynamically: | `server.raft-msg-max-batch-size` | Sets the maximum number of Raft messages that are contained in a single gRPC message | | `server.simplify-metrics` | Controls whether to simplify the sampling monitoring metrics | | `storage.block-cache.capacity` | The size of shared block cache (supported since v4.0.3) | +| storage.flow-control.enable | Determines whether to enable the flow control mechanism | +| storage.flow-control.memtables-threshold | The maximum number of kvDB memtables that trigger flow control | +| storage.flow-control.l0-files-threshold | The maximum number of kvDB L0 files that trigger flow control | +| storage.flow-control.soft-pending-compaction-bytes-limit | The threshold of kvDB pending compaction bytes that triggers flow control mechanism to reject some write requests | +| storage.flow-control.hard-pending-compaction-bytes-limit | The threshold of kvDB pending compaction bytes that triggers flow control mechanism to reject all write requests | | `storage.scheduler-worker-pool-size` | The number of threads in the Scheduler thread pool | | `backup.num-threads` | The number of backup threads (supported since v4.0.3) | | `split.qps-threshold` | The threshold to execute `load-base-split` on a Region. If the QPS of read requests for a Region exceeds `qps-threshold` for 10 consecutive seconds, this Region should be split.|