diff --git a/system-variables.md b/system-variables.md
index a0b7046ec5c24..5c49ad0b6e5a4 100644
--- a/system-variables.md
+++ b/system-variables.md
@@ -6254,6 +6254,26 @@ For details, see [Identify Slow Queries](/identify-slow-queries.md).
+
+
+### tidb_stmt_summary_group_by_user New in CLOUD.202603.1 {#tidb_stmt_summary_group_by_user}
+
+> **Note:**
+>
+> - For TiDB Cloud Starter, this variable is not supported.
+> - For TiDB Cloud Essential and Premium, this variable is read-only.
+
+- Scope: GLOBAL
+- Persists to cluster: Yes
+- Applies to hint [SET_VAR](/optimizer-hints.md#set_varvar_namevar_value): No
+- Type: Boolean
+- Default value: `ON` for TiDB Cloud Essential and TiDB Cloud Premium
+- This variable controls whether to include the user who executes SQL statements as an aggregation dimension in [statement summary tables](/statement-summary-tables.md). When this variable is set to `OFF`, TiDB aggregates the same SQL digest executed by different users into the same row, and the `SAMPLE_USER` field displays one sampled user. When this variable is set to `ON`, TiDB aggregates the same SQL digest executed by different users into separate rows, and the `SAMPLE_USER` field of each row indicates the user who executed the statement.
+- Modifying this variable clears the current in-memory statement summary data because data before and after the modification is aggregated using different dimensions. This does not affect historical data persisted to disk.
+- After you enable this variable, the number of statement summary records might increase with the number of different execution users for the same SQL digest, which increases memory usage.
+
+
+
### tidb_stmt_summary_history_size New in v4.0
> **Note:**
@@ -6329,6 +6349,26 @@ For details, see [Identify Slow Queries](/identify-slow-queries.md).
+
+
+### tidb_stmt_summary_persist_evicted New in CLOUD.202603.1 {#tidb_stmt_summary_persist_evicted}
+
+> **Note:**
+>
+> - For TiDB Cloud Starter, this variable is not supported.
+> - For TiDB Cloud Essential and Premium, this variable is read-only.
+
+- Scope: GLOBAL
+- Persists to cluster: Yes
+- Applies to hint [SET_VAR](/optimizer-hints.md#set_varvar_namevar_value): No
+- Type: Boolean
+- Default value: `OFF`
+- This variable controls whether to write statement summary records evicted by LRU to the statement summary log after you enable [statements summary persistence](/statement-summary-tables.md#persist-statements-summary). TiDB marks these JSON records with `"evicted": true` so that downstream log consumers can identify them.
+- This variable takes effect only when [tidb_stmt_summary_enable_persistent](/system-variables.md#tidb_stmt_summary_enable_persistent-new-in-v660) is enabled. TiDB does not return records marked with `"evicted": true` as query results from `statements_summary_history` or `cluster_statements_summary_history`.
+- After you enable this variable, the log volume increases as LRU evictions become more frequent. TiDB writes evicted records using an asynchronous buffer mechanism. When the buffer queue is full, TiDB might drop new evicted records.
+
+
+
### tidb_stmt_summary_refresh_interval New in v4.0
> **Note:**