diff --git a/releases/release-7.1.0.md b/releases/release-7.1.0.md
index aee94e6c6a9fc..87e3d002b4164 100644
--- a/releases/release-7.1.0.md
+++ b/releases/release-7.1.0.md
@@ -348,8 +348,6 @@ Compared with the previous LTS 6.5.0, 7.1.0 not only includes new features, impr
| TiDB | [`performance.force-init-stats`](/tidb-configuration-file.md#force-init-stats-new-in-v710) | Newly added | Controls whether to wait for statistics initialization to finish before providing services during TiDB startup. |
| TiDB | [`performance.lite-init-stats`](/tidb-configuration-file.md#lite-init-stats-new-in-v710) | Newly added | Controls whether to use lightweight statistics initialization during TiDB startup. |
| TiDB | [`log.timeout`](/tidb-configuration-file.md#timeout-new-in-v710) | Newly added | Sets the timeout for log-writing operations in TiDB. In case of a disk failure that prevents logs from being written, this configuration item can trigger the TiDB process to panic instead of hang. The default value is `0`, which means no timeout is set. |
-| TiKV | [rocksdb.\[defaultcf\|writecf\|lockcf\].optimize-filters-for-memory
](/tikv-configuration-file.md#optimize-filters-for-memory-new-in-v710) | Newly added | Controls whether to generate Bloom/Ribbon filters that minimize memory internal fragmentation. |
-| TiKV | [rocksdb.\[defaultcf\|writecf\|lockcf\].ribbon-filter-above-level
](/tikv-configuration-file.md#ribbon-filter-above-level-new-in-v710) | Newly added | Controls whether to use Ribbon filters for levels greater than or equal to this value and use non-block-based bloom filters for levels less than this value. |
| TiKV | [`split.byte-threshold`](/tikv-configuration-file.md#byte-threshold-new-in-v50) | Modified | Changes the default value from `30MiB` to `100MiB` when [`region-split-size`](/tikv-configuration-file.md#region-split-size) is greater than or equal to 4 GB. |
| TiKV | [`split.qps-threshold`](/tikv-configuration-file.md#qps-threshold) | Modified | Changes the default value from `3000` to `7000` when [`region-split-size`](/tikv-configuration-file.md#region-split-size) is greater than or equal to 4 GB. |
| TiKV | [`split.region-cpu-overload-threshold-ratio`](/tikv-configuration-file.md#region-cpu-overload-threshold-ratio-new-in-v620) | Modified | Changes the default value from `0.25` to `0.75` when [`region-split-size`](/tikv-configuration-file.md#region-split-size) is greater than or equal to 4 GB. |
diff --git a/tikv-configuration-file.md b/tikv-configuration-file.md
index 11eee2f438df1..99b0124a7f7cf 100644
--- a/tikv-configuration-file.md
+++ b/tikv-configuration-file.md
@@ -1347,12 +1347,6 @@ Configuration items related to `rocksdb.defaultcf`, `rocksdb.writecf`, and `rock
+ Default value for `defaultcf`: `true`
+ Default value for `writecf` and `lockcf`: `false`
-### `optimize-filters-for-memory` New in v7.1.0
-
-+ Determines whether to generate Bloom/Ribbon filters that minimize memory internal fragmentation.
-+ Note that this configuration item takes effect only when [`format-version`](#format-version-new-in-v620) >= 5.
-+ Default value: `false`
-
### `whole-key-filtering`
+ Determines whether to put the entire key to bloom filter
@@ -1370,12 +1364,6 @@ Configuration items related to `rocksdb.defaultcf`, `rocksdb.writecf`, and `rock
+ Determines whether each block creates a bloom filter
+ Default value: `false`
-### `ribbon-filter-above-level` New in v7.1.0
-
-+ Determines whether to use Ribbon filters for levels greater than or equal to this value and use non-block-based bloom filters for levels less than this value. When this configuration item is set, [`block-based-bloom-filter`](#block-based-bloom-filter) will be ignored.
-+ Note that this configuration item takes effect only when [`format-version`](#format-version-new-in-v620) >= 5.
-+ Default value: `false`
-
### `read-amp-bytes-per-bit`
+ Enables or disables statistics of read amplification.