Scheduling Limit Config
Learn how to configure scheduling rate limit on stores.
This document describes how to configure the scheduling rate limit at the store level.
TiKV balance regions by the commands sent by PD. These commands are called scheduling operators. PD makes the scheduling operators based on the information gathered from TiKV and scheduling configurations.
*-schedule-limit
in pd-ctl
is usually used to set limits of the total number of various operators. However, *-schedule-limit
might cause performance bottlenecks, because it applies to the entire cluster.
Configure scheduling rate limits on stores
PD provides two methods to configure scheduling rate limits on stores as follows:
Permanently set the scheduling rate limits by store-balance-rate in
pd-ctl
.The configuration change only applies to the stores that are started afterward. If you want to apply this change to all stores, you need to restart all TiKV stores. If you want to apply this change immediately, see the workaround below.store-balance-rate
specifies the maximum number of scheduling tasks allowed for each store per minute. The scheduling step includes adding peers or learners.» config set store-balance-rate 20
Temporarily set the scheduling rate limits by
limit
inpd-ctl
.The scheduling rate limit set by this method is lost after restarting TiKV, and the value previously set by method 1 is used instead.stores set limit <rate>
# Set the maximum number of scheduling operators per minute to be 20. Apply to all stores. » stores set limit 20
store limit <store_id> <rate>
# Set the maximum number of scheduling operators per minute to be 20. Apply to store 2. » store limit 2 10
Read current scheduling rate limits on stores
store show limit
» stores show limit { "4": { "rate": 15 }, "5": { "rate": 15 }, # ... }
Workaround
By combining method 1 and method 2, you can permanently modify the rate limit to 20 and applies it immediately.
```bash
» config set store-balance-rate 20
» stores set limit 20
```