From 23298901371bac166e9b439db071dc28b3d6bd44 Mon Sep 17 00:00:00 2001 From: xixirangrang Date: Thu, 25 Nov 2021 15:15:52 +0800 Subject: [PATCH] tikv(cdc): dynamic online change cdc configuration (#6909) --- dynamic-config.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dynamic-config.md b/dynamic-config.md index 25a1bfdf0ec2e..a0a53a7ad9db7 100644 --- a/dynamic-config.md +++ b/dynamic-config.md @@ -197,6 +197,11 @@ The following TiKV configuration items can be modified online: | `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 a consecutive period of time, this Region should be split. | | `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`.