diff --git a/releases/release-7.4.0.md b/releases/release-7.4.0.md
index c3d33079b9e8b..e889ecf3cd25a 100644
--- a/releases/release-7.4.0.md
+++ b/releases/release-7.4.0.md
@@ -308,6 +308,8 @@ Quick access: [Quick start](https://docs.pingcap.com/tidb/v7.4/quick-start-with-
| Configuration file | Configuration parameter | Change type | Description |
| -------- | -------- | -------- | -------- |
| TiDB | [`enable-stats-cache-mem-quota`](/tidb-configuration-file.md#enable-stats-cache-mem-quota-new-in-v610) | Modified | The default value is changed from `false` to `true`, which means the memory limit for caching TiDB statistics is enabled by default. |
+| TiKV | [rocksdb.\[defaultcf\|writecf\|lockcf\].periodic-compaction-seconds
](/tikv-configuration-file.md#periodic-compaction-seconds-new-in-v720) | Modified | The default value is changed from `"30d"` to `"0s"` to disable periodic compaction of RocksDB by default. This change avoids a significant number of compactions being triggered after the TiDB upgrade, which affects the read and write performance of the frontend. |
+| TiKV | [rocksdb.\[defaultcf\|writecf\|lockcf\].ttl
](/tikv-configuration-file.md#ttl-new-in-v720) | Modified | The default value is changed from `"30d"` to `"0s"` so that SST files do not trigger compactions by default due to TTL, which avoids affecting the read and write performance of the frontend. |
| TiFlash | [`flash.compact_log_min_gap`](/tiflash/tiflash-configuration.md) | Newly added | When the gap between the `applied_index` advanced by the current Raft state machine and the `applied_index` at the last disk spilling exceeds `compact_log_min_gap`, TiFlash executes the `CompactLog` command from TiKV and spills data to disk. |
| TiFlash | [`profiles.default.enable_resource_control`](/tiflash/tiflash-configuration.md) | Newly added | Controls whether to enable the TiFlash resource control feature. |
| TiFlash | [`storage.format_version`](/tiflash/tiflash-configuration.md) | Modified | Change the default value from `4` to `5`. The new format can reduce the number of physical files by merging smaller files. |
diff --git a/tikv-configuration-file.md b/tikv-configuration-file.md
index 2788ce908f0f9..f5ecd59acc2f9 100644
--- a/tikv-configuration-file.md
+++ b/tikv-configuration-file.md
@@ -1577,13 +1577,13 @@ Configuration items related to `rocksdb.defaultcf`, `rocksdb.writecf`, and `rock
### `ttl` New in v7.2.0
+ SST files with updates older than the TTL will be automatically selected for compaction. These SST files will go through the compaction in a cascading way so that they can be compacted to the bottommost level or file.
-+ Default value: `"30d"`
++ Default value: `"0s"`, meaning that no SST file is selected by default.
+ Unit: s(second)|h(hour)|d(day)
### `periodic-compaction-seconds` New in v7.2.0
+ The time interval for periodic compaction. SST files with updates older than this value will be selected for compaction and rewritten to the same level where these SST files originally reside.
-+ Default value: `"30d"`
++ Default value: `"0s"`, meaning that periodic compaction is disabled by default.
+ Unit: s(second)|h(hour)|d(day)
## rocksdb.defaultcf.titan