Skip to content

Commit fd2a86d

Browse files
author
github-actions
committed
update MD by dispatch event pingcap/docs master
1 parent 1f3dc13 commit fd2a86d

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

markdown-pages/en/tidb/master/system-variables.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5505,6 +5505,24 @@ SHOW WARNINGS;
55055505
- Range: `[0, 2147483647]`
55065506
- This variable controls the iteration of the optimizer's estimation logic. After changing the value of this variable, the estimation logic of the optimizer will change greatly. Currently, `0` is the only valid value. It is not recommended to set it to other values.
55075507

5508+
### `tidb_paging_size_bytes` <span class="version-mark">New in v9.0.0 and TiDB-X-CLOUD.202603</span>
5509+
5510+
>**Note:**
5511+
>
5512+
> This variable is not supported on TiDB Cloud Starter.
5513+
5514+
- Scope
5515+
- TiDB Self-Managed: SESSION | GLOBAL
5516+
- TiDB Cloud Essential and Premium: SESSION
5517+
- Persists to cluster: Yes
5518+
- Applies to hint [SET_VAR](/optimizer-hints.md#set_varvar_namevar_value): Yes
5519+
- Type: Integer
5520+
- Default value: `0`
5521+
- Range: `[0, 9223372036854775807]`
5522+
- Unit: bytes
5523+
- Controls the maximum size, in bytes, of a single paged response in the coprocessor protocol, providing an additional response-size-based pagination mechanism alongside the row-based pagination controlled by [`tidb_max_paging_size`](#tidb_max_paging_size-new-in-v630). The default value of this variable is `0`, which disables byte-based pagination. This feature takes effect only when [resource control](/tidb-resource-control-ru-groups.md) is enabled, and the resource group of the current statement has a fixed RU quota. It allows the PD resource control module to estimate RU consumption based on the amount of data to be scanned and deduct the estimated RUs in advance before the statement is executed. To enable this feature, consider setting the variable to `4194304` (4 MiB).
5524+
- This variable is an internal TiDB variable. It is **not recommended** to modify its value.
5525+
55085526
### tidb_partition_prune_mode <span class="version-mark">New in v5.1</span>
55095527

55105528
> **Warning:**

0 commit comments

Comments
 (0)