[转帖]tidb Modify Configuration Dynamically
https://docs.pingcap.com/tidb/v6.5/dynamic-config
This document describes how to dynamically modify the cluster configuration.
You can dynamically update the configuration of components (including TiDB, TiKV, and PD) using SQL statements, without restarting the cluster components. Currently, the method of changing TiDB instance configuration is different from that of changing configuration of other components (such TiKV and PD).
Common Operations
This section describes the common operations of dynamically modifying configuration.
View instance configuration
To view the configuration of all instances in the cluster, use the show config statement. The result is as follows:
You can filter the result by fields. For example:
Modify TiKV configuration dynamically
- After dynamically changing TiKV configuration items, the TiKV configuration file is automatically updated. However, you also need to modify the corresponding configuration items by executing
tiup edit-config; otherwise, operations such asupgradeandreloadwill overwrite your changes. For details of modifying configuration items, refer to Modify configuration using TiUP. - After executing
tiup edit-config, you do not need to executetiup reload.
When using the set config statement, you can modify the configuration of a single instance or of all instances according to the instance address or the component type.
- Modify the configuration of all TiKV instances:
It is recommended to wrap variable names in backticks.
Modify the configuration of a single TiKV instance:
set config "127.0.0.1:20180" `split.qps-threshold`=1000;
If the modification is successful, Query OK is returned:
If an error occurs during the batch modification, a warning is returned:
The batch modification does not guarantee atomicity. The modification might succeed on some instances, while failing on others. If you modify the configuration of the entire TiKV cluster using set tikv key=val, your modification might fail on some instances. You can use show warnings to check the result.
If some modifications fail, you need to re-execute the corresponding statement or modify each failed instance. If some TiKV instances cannot be accessed due to network issues or machine failure, modify these instances after they are recovered.
If a configuration item is successfully modified, the result is persisted in the configuration file, which will prevail in the subsequent operations. The names of some configuration items might conflict with TiDB reserved words, such as limit and key. For these configuration items, use backtick ` to enclose them. For example, `raftstore.raft-log-gc-size-limit`.
The following TiKV configuration items can be modified dynamically:
| Configuration item | Description |
|---|---|
| log.level | The log level. |
raftstore.raft-max-inflight-msgs |
The number of Raft logs to be confirmed. If this number is exceeded, the Raft state machine slows down log sending. |
raftstore.raft-log-gc-tick-interval |
The time interval at which the polling task of deleting Raft logs is scheduled |
raftstore.raft-log-gc-threshold |
The soft limit on the maximum allowable number of residual Raft logs |
raftstore.raft-log-gc-count-limit |
The hard limit on the allowable number of residual Raft logs |
raftstore.raft-log-gc-size-limit |
The hard limit on the allowable size of residual Raft logs |
raftstore.raft-max-size-per-msg |
The soft limit on the size of a single message packet that is allowed to be generated |
raftstore.raft-entry-max-size |
The hard limit on the maximum size of a single Raft log |
raftstore.raft-entry-cache-life-time |
The maximum remaining time allowed for the log cache in memory |
raftstore.split-region-check-tick-interval |
The time interval at which to check whether the Region split is needed |
raftstore.region-split-check-diff |
The maximum value by which the Region data is allowed to exceed before Region split |
raftstore.region-compact-check-interval |
The time interval at which to check whether it is necessary to manually trigger RocksDB compaction |
raftstore.region-compact-check-step |
The number of Regions checked at one time for each round of manual compaction |
raftstore.region-compact-min-tombstones |
The number of tombstones required to trigger RocksDB compaction |
raftstore.region-compact-tombstones-percent |
The proportion of tombstone required to trigger RocksDB compaction |
raftstore.pd-heartbeat-tick-interval |
The time interval at which a Region's heartbeat to PD is triggered |
raftstore.pd-store-heartbeat-tick-interval |
The time interval at which a store's heartbeat to PD is triggered |
raftstore.snap-mgr-gc-tick-interval |
The time interval at which the recycle of expired snapshot files is triggered |
raftstore.snap-gc-timeout |
The longest time for which a snapshot file is saved |
raftstore.lock-cf-compact-interval |
The time interval at which TiKV triggers a manual compaction for the Lock Column Family |
raftstore.lock-cf-compact-bytes-threshold |
The size at which TiKV triggers a manual compaction for the Lock Column Family |
raftstore.messages-per-tick |
The maximum number of messages processed per batch |
raftstore.max-peer-down-duration |
The longest inactive duration allowed for a peer |
raftstore.max-leader-missing-duration |
The longest duration allowed for a peer to be without a leader. If this value is exceeded, the peer verifies with PD whether it has been deleted. |
raftstore.abnormal-leader-missing-duration |
The normal duration allowed for a peer to be without a leader. If this value is exceeded, the peer is seen as abnormal and marked in metrics and logs. |
raftstore.peer-stale-state-check-interval |
The time interval to check whether a peer is without a leader |
raftstore.consistency-check-interval |
The time interval to check consistency (NOT recommended because it is not compatible with the garbage collection in TiDB) |
raftstore.raft-store-max-leader-lease |
The longest trusted period of a Raft leader |
raftstore.merge-check-tick-interval |
The time interval for merge check |
raftstore.cleanup-import-sst-interval |
The time interval to check expired SST files |
raftstore.local-read-batch-size |
The maximum number of read requests processed in one batch |
raftstore.apply-yield-write-size |
The maximum number of bytes that the Apply thread can write for one FSM (Finite-state Machine) in each round |
raftstore.hibernate-timeout |
The shortest wait duration before entering hibernation upon start. Within this duration, TiKV does not hibernate (not released). |
raftstore.apply-pool-size |
The number of threads in the pool that flushes data to the disk, which is the size of the Apply thread pool |
raftstore.store-pool-size |
The number of threads in the pool that processes Raft, which is the size of the Raftstore thread pool |
raftstore.apply-max-batch-size |
Raft state machines process data write requests in batches by the BatchSystem. This configuration item specifies the maximum number of Raft state machines that can execute the requests in one batch. |
raftstore.store-max-batch-size |
Raft state machines process requests for flushing logs into the disk in batches by the BatchSystem. This configuration item specifies the maximum number of Raft state machines that can process the requests in one batch. |
readpool.unified.max-thread-count |
The maximum number of threads in the thread pool that uniformly processes read requests, which is the size of the UnifyReadPool thread pool |
readpool.unified.auto-adjust-pool-size |
Determines whether to automatically adjust the UnifyReadPool thread pool size |
coprocessor.split-region-on-table |
Enables to split Region by table |
coprocessor.batch-split-limit |
The threshold of Region split in batches |
coprocessor.region-max-size |
The maximum size of a Region |
coprocessor.region-split-size |
The size of the newly split Region |
coprocessor.region-max-keys |
The maximum number of keys allowed in a Region |
coprocessor.region-split-keys |
The number of keys in the newly split Region |
pessimistic-txn.wait-for-lock-timeout |
The longest duration that a pessimistic transaction waits for the lock |
pessimistic-txn.wake-up-delay-duration |
The duration after which a pessimistic transaction is woken up |
pessimistic-txn.pipelined |
Determines whether to enable the pipelined pessimistic locking process |
pessimistic-txn.in-memory |
Determines whether to enable the in-memory pessimistic lock |
quota.foreground-cpu-time |
The soft limit on the CPU resources used by TiKV foreground to process read and write requests |
quota.foreground-write-bandwidth |
The soft limit on the bandwidth with which foreground transactions write data |
quota.foreground-read-bandwidth |
The soft limit on the bandwidth with which foreground transactions and the Coprocessor read data |
quota.background-cpu-time |
The soft limit on the CPU resources used by TiKV background to process read and write requests |
quota.background-write-bandwidth |
The soft limit on the bandwidth with which background transactions write data (not effective yet) |
quota.background-read-bandwidth |
The soft limit on the bandwidth with which background transactions and the Coprocessor read data (not effective yet) |
quota.enable-auto-tune |
Whether to enable the auto-tuning of quota. If this configuration item is enabled, TiKV dynamically adjusts the quota for the background requests based on the load of TiKV instances. |
quota.max-delay-duration |
The maximum time that a single read or write request is forced to wait before it is processed in the foreground |
gc.ratio-threshold |
The threshold at which Region GC is skipped (the number of GC versions/the number of keys) |
gc.batch-keys |
The number of keys processed in one batch |
gc.max-write-bytes-per-sec |
The maximum bytes that can be written into RocksDB per second |
gc.enable-compaction-filter |
Whether to enable compaction filter |
gc.compaction-filter-skip-version-check |
Whether to skip the cluster version check of compaction filter (not released) |
{db-name}.max-total-wal-size |
The maximum size of total WAL |
{db-name}.max-background-jobs |
The number of background threads in RocksDB |
{db-name}.max-background-flushes |
The maximum number of flush threads in RocksDB |
{db-name}.max-open-files |
The total number of files that RocksDB can open |
{db-name}.compaction-readahead-size |
The size of readahead during compaction |
{db-name}.bytes-per-sync |
The rate at which OS incrementally synchronizes files to disk while these files are being written asynchronously |
{db-name}.wal-bytes-per-sync |
The rate at which OS incrementally synchronizes WAL files to disk while the WAL files are being written |
{db-name}.writable-file-max-buffer-size |
The maximum buffer size used in WritableFileWrite |
{db-name}.{cf-name}.block-cache-size |
The cache size of a block |
{db-name}.{cf-name}.write-buffer-size |
The size of a memtable |
{db-name}.{cf-name}.max-write-buffer-number |
The maximum number of memtables |
{db-name}.{cf-name}.max-bytes-for-level-base |
The maximum number of bytes at base level (L1) |
{db-name}.{cf-name}.target-file-size-base |
The size of the target file at base level |
{db-name}.{cf-name}.level0-file-num-compaction-trigger |
The maximum number of files at L0 that trigger compaction |
{db-name}.{cf-name}.level0-slowdown-writes-trigger |
The maximum number of files at L0 that trigger write stall |
{db-name}.{cf-name}.level0-stop-writes-trigger |
The maximum number of files at L0 that completely block write |
{db-name}.{cf-name}.max-compaction-bytes |
The maximum number of bytes written into disk per compaction |
{db-name}.{cf-name}.max-bytes-for-level-multiplier |
The default amplification multiple for each layer |
{db-name}.{cf-name}.disable-auto-compactions |
Enables or disables automatic compaction |
{db-name}.{cf-name}.soft-pending-compaction-bytes-limit |
The soft limit on the pending compaction bytes |
{db-name}.{cf-name}.hard-pending-compaction-bytes-limit |
The hard limit on the pending compaction bytes |
{db-name}.{cf-name}.titan.blob-run-mode |
The mode of processing blob files |
server.grpc-memory-pool-quota |
Limits the memory size that can be used by gRPC |
server.max-grpc-send-msg-len |
Sets the maximum length of a gRPC message that can be sent |
server.snap-max-write-bytes-per-sec |
Sets the maximum allowable disk bandwidth when processing snapshots |
server.concurrent-send-snap-limit |
Sets the maximum number of snapshots sent at the same time |
server.concurrent-recv-snap-limit |
Sets the maximum number of snapshots received at the same time |
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.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. |
split.byte-threshold |
The threshold to execute load-base-split on a Region. If the traffic of read requests for a Region exceeds the byte-threshold for 10 consecutive seconds, this Region should be split. |
split.region-cpu-overload-threshold-ratio |
The threshold to execute load-base-split on a Region. If the CPU usage in the Unified Read Pool for a Region exceeds the region-cpu-overload-threshold-ratio for 10 consecutive seconds, this Region should be split. (supported since v6.2.0) |
split.split-balance-score |
The parameter of load-base-split, which ensures the load of the two split Regions is as balanced as possible. The smaller the value is, the more balanced the load is. But setting it too small might cause split failure. |
split.split-contained-score |
The parameter of load-base-split. The smaller the value, the fewer cross-Region visits after Region split. |
cdc.min-ts-interval |
The time interval at which Resolved TS is forwarded |
cdc.old-value-cache-memory-quota |
The upper limit of memory occupied by the TiCDC Old Value entries |
cdc.sink-memory-quota |
The upper limit of memory occupied by TiCDC data change events |
cdc.incremental-scan-speed-limit |
The upper limit on the speed of incremental scanning for historical data |
cdc.incremental-scan-concurrency |
The maximum number of concurrent incremental scanning tasks for historical data |
In the table above, parameters with the {db-name} or {db-name}.{cf-name} prefix are configurations related to RocksDB. The optional values of db-name are rocksdb and raftdb.
- When
db-nameisrocksdb, the optional values ofcf-namearedefaultcf,writecf,lockcf, andraftcf. - When
db-nameisraftdb, the value ofcf-namecan bedefaultcf.
For detailed parameter description, refer to TiKV Configuration File.
Modify PD configuration dynamically
Currently, PD does not support the separate configuration for each instance. All PD instances share the same configuration.
You can modify the PD configurations using the following statement:
If the modification is successful, Query OK is returned:
If a configuration item is successfully modified, the result is persisted in etcd instead of in the configuration file; the configuration in etcd will prevail in the subsequent operations. The names of some configuration items might conflict with TiDB reserved words. For these configuration items, use backtick ` to enclose them. For example, `schedule.leader-schedule-limit`.
The following PD configuration items can be modified dynamically:
| Configuration item | Description |
|---|---|
log.level |
The log level |
cluster-version |
The cluster version |
schedule.max-merge-region-size |
Controls the size limit of Region Merge (in MiB) |
schedule.max-merge-region-keys |
Specifies the maximum numbers of the Region Merge keys |
schedule.patrol-region-interval |
Determines the frequency at which replicaChecker checks the health state of a Region |
schedule.split-merge-interval |
Determines the time interval of performing split and merge operations on the same Region |
schedule.max-snapshot-count |
Determines the maximum number of snapshots that a single store can send or receive at the same time |
schedule.max-pending-peer-count |
Determines the maximum number of pending peers in a single store |
schedule.max-store-down-time |
The downtime after which PD judges that the disconnected store cannot be recovered |
schedule.leader-schedule-policy |
Determines the policy of Leader scheduling |
schedule.leader-schedule-limit |
The number of Leader scheduling tasks performed at the same time |
schedule.region-schedule-limit |
The number of Region scheduling tasks performed at the same time |
schedule.replica-schedule-limit |
The number of Replica scheduling tasks performed at the same time |
schedule.merge-schedule-limit |
The number of the Region Merge scheduling tasks performed at the same time |
schedule.hot-region-schedule-limit |
The number of hot Region scheduling tasks performed at the same time |
schedule.hot-region-cache-hits-threshold |
Determines the threshold at which a Region is considered a hot spot |
schedule.high-space-ratio |
The threshold ratio below which the capacity of the store is sufficient |
schedule.low-space-ratio |
The threshold ratio above which the capacity of the store is insufficient |
schedule.tolerant-size-ratio |
Controls the balance buffer size |
schedule.enable-remove-down-replica |
Determines whether to enable the feature that automatically removes DownReplica |
schedule.enable-replace-offline-replica |
Determines whether to enable the feature that migrates OfflineReplica |
schedule.enable-make-up-replica |
Determines whether to enable the feature that automatically supplements replicas |
schedule.enable-remove-extra-replica |
Determines whether to enable the feature that removes extra replicas |
schedule.enable-location-replacement |
Determines whether to enable isolation level check |
schedule.enable-cross-table-merge |
Determines whether to enable cross-table merge |
schedule.enable-one-way-merge |
Enables one-way merge, which only allows merging with the next adjacent Region |
replication.max-replicas |
Sets the maximum number of replicas |
replication.location-labels |
The topology information of a TiKV cluster |
replication.enable-placement-rules |
Enables Placement Rules |
replication.strictly-match-label |
Enables the label check |
pd-server.use-region-storage |
Enables independent Region storage |
pd-server.max-gap-reset-ts |
Sets the maximum interval of resetting timestamp (BR) |
pd-server.key-type |
Sets the cluster key type |
pd-server.metric-storage |
Sets the storage address of the cluster metrics |
pd-server.dashboard-address |
Sets the dashboard address |
replication-mode.replication-mode |
Sets the backup mode |
For detailed parameter description, refer to PD Configuration File.
Modify TiDB configuration dynamically
Currently, the method of changing TiDB configuration is different from that of changing TiKV and PD configurations. You can modify TiDB configuration by using system variables.
The following example shows how to dynamically modify slow-threshold by using the tidb_slow_log_threshold variable.
The default value of slow-threshold is 300 ms. You can set it to 200 ms by using tidb_slow_log_threshold.
The following TiDB configuration items can be modified dynamically:
| Configuration item | SQL variable |
|---|---|
instance.tidb_enable_slow_log |
tidb_enable_slow_log |
instance.tidb_slow_log_threshold |
tidb_slow_log_threshold |
instance.tidb_expensive_query_time_threshold |
tidb_expensive_query_time_threshold |
Modify TiFlash configuration dynamically
Currently, you can modify the TiFlash configuration max_threads by using the system variable tidb_max_tiflash_threads, which specifies the maximum concurrency for TiFlash to execute a request.
The default value of tidb_max_tiflash_threads is -1, indicating that this system variable is invalid and depends on the setting of the TiFlash configuration file. You can set max_threads to 10 by using tidb_max_tiflash_threads:
[转帖]tidb Modify Configuration Dynamically的更多相关文章
- Learning WCF Chapter1 Generating a Service and Client Proxy
In the previous lab,you created a service and client from scratch without leveraging the tools avail ...
- Linux下命令行安装weblogic10.3.6
Linux下命令行安装weblogic10.3.6 一.安装前准备工作: 1.创建用户useradd weblogic;创建用户成功linux系统会自动创建一个和用户名相同的分组,并将该用户分到改组中 ...
- weblogic安装注意事项_linux
➠更多技术干货请戳:听云博客 一.安装过程:参考“weblogic安装截屏(linux)” 注意事项:安装weblogic时,需要注意以下两点: 1.首先在安装目录下创建weblogic12文件夹 如 ...
- Linux下命令行安装WebLogic 10.3.6
1.创建用户useradd weblogic;创建用户成功linux系统会自动创建一个和用户名相同的分组,并将该用户分到改组中.并会在/home路径下创建一个和用户名相同的路径,比如我们创建的webl ...
- weblogic管理1——创建 和 删除一个domain
说明本文环境 WLS_HOME=/home/weblogic/Oracle/Middleware创建一个domian 第一种方法通过console 创建>[weblogic@11g Mid ...
- 自动化运维——一键安装MySQL
根据项目需要,前段时间在搞EMM系统各种安装包的自动化部署工作,主要包括一键安装和一键启动\停止功能.总结记录下来,以供后用. 本文主要是自动安装MySQL5.7.11版,Linux版脚本在CentO ...
- 实战weblogic集群之创建domain,AdminServer
在weblogic安装完后,接下来就可以创建domain,AdminSever了. 第1步: $ cd /app/sinova/Oracle/wlserver_10./common/bin $ ./c ...
- Linux安装WebLogic12
# groupadd weblogic# useradd -g weblogic weblogic# passwd weblogic# mkdir -p /var/bea# chown -R webl ...
- 解析GenericOptionsParser
hadoop源代码分析(4)-org.apache.hadoop.util包-GenericOptionsParser类[原创] 一 准备 hadoop版本:1.0.3,GenericOptio ...
- weblogic安装升级配置
本次操作是主要围绕如何搭建weblogic服务器升级weblogic软件及配置服务,总共有三大步骤,可划分为六个小步骤: 选取已有环境,准备weblogic压缩包,java包等 准备操作系统环境用户目 ...
随机推荐
- gentoo安装gcc出现error: C compiler cannot create executables
安装程序 systemd 过程中,出现了error: C compiler cannot create executables 这类错误,经过检查,由于没有配置本地编译器的结果. 输入命令如下: g ...
- CUDA C编程权威指南:1-基于CUDA的异构并行计算
什么是CUDA?CUDA(Compute Unified Device Architecture,统一计算设备架构)是NVIDIA(英伟达)提出的并行计算架构,结合了CPU和GPU的优点,主要用来 ...
- Python快速爬取车标网图片,以后不要说这什么车你不认识了!
知识不分边界...... 人,为什么要读书?举个例子: 当看到天边飞鸟,你会说:"落霞与孤鹜齐飞,秋水共长天一色."而不是:"卧靠,好多鸟."; 当你失恋时你低 ...
- 再谈BOM和DOM(3):DOM节点操作-元素样式修改及DOM内容增删改查
操作节点,先得选择节点,就得知道节点选择器与DOM节点查找 DOM节点选择器 W3C提供了比较方便的定位节点的方法和属性 getElementById() 一个参数:元素标签的ID getElemen ...
- 火山引擎DataTester:AB测试技术揭秘及应用分享
更多技术交流.求职机会,欢迎关注字节跳动数据平台微信公众号,回复[1]进入官方交流群 在全球软件工程创新峰会上,火山引擎DataTester 研发负责人韩云飞围绕"AB测试:让数据与业务 ...
- Win10 企业版激活方法
如果大家想要激活 Win10的企业版,可以依次执行下面的命令,分别表示安装win10企业版密钥,设置kms服务器,激活win10企业版;slmgr /ipk NW6C2-QMPVW-D7KKK-3GK ...
- 火山引擎 DataTester 首推 A/B 实验经验库,帮助企业高效优化实验设计能力
更多技术交流.求职机会,欢迎关注字节跳动数据平台微信公众号,回复[1]进入官方交流群 近日,火山引擎 DataTester 推出了重要功能--A/B 实验经验库. 基于在字节跳动已完成 150 万 ...
- 对不起,你做的 A/B 实验都是错的——火山引擎 DataTester 科普
DataTester 是火山引擎数智平台旗下产品,能基于先进的底层算法,提供科学分流能力和智能的统计引擎,支持多种复杂的 A/B 实验类型.DataTester 深度耦合推荐.广告.搜索.UI.产品功 ...
- QA: Solon 出现中文乱码怎么办?
有些服务器可能会出现中文乱码,有些又不会.也是挺晕的. 可以用 jvm 启动参数试一下: java -Dfile.encoding=utf-8 -jar demoapp.jar
- Xml Entity 实体互转(XStream)
http://x-stream.github.io/tutorial.html 项目中用了 JAXB 方式 Xml Entity 实体互转(JAXB) 实体: import com.thoughtwo ...