You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/variables.md
+35-7Lines changed: 35 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -490,9 +490,16 @@ Allowed range is from `1` to `2147483647`.
490
490
| Data type | Numeric |
491
491
| Default | 16 KB |
492
492
493
-
Specifies the size of the data block for reading RocksDB data files.
493
+
Specifies the size of the data blocks used for storing and reading RocksDB data files. Larger block sizes can improve compression efficiency and reduce metadata overhead, but may increase memory usage and read amplification.
494
+
494
495
The default value is `16 KB`.
495
-
The allowed range is from `1024` to `18446744073709551615` bytes.
496
+
The allowed range is from `1024` to `4294967296` bytes (4GiB).
497
+
498
+
#### Version change
499
+
500
+
As of Percona Server for MySQL 8.0.44-35, the maximum value has been reduced from `18446744073709551615` bytes to `4294967296` bytes (4GiB).
501
+
502
+
For versions before 8.0.44-35, the allowed range is from `1024` to `18446744073709551615` bytes.
496
503
497
504
### `rocksdb_block_size_deviation`
498
505
@@ -1186,7 +1193,13 @@ through before assuming deadlock.
1186
1193
| Data type | UINT |
1187
1194
| Default | 2 |
1188
1195
1189
-
The cardinality multiplier used in tests. The minimum value is 0. The maxium value is 2147483647 (INT_MAX).
1196
+
The cardinality multiplier used in tests. The minimum value is 1. The maxium value is 2147483647 (INT_MAX).
1197
+
1198
+
#### Version change
1199
+
1200
+
As of Percona Server for MySQL 8.0.44-35, the minimum value has been changed from 0 to 1.
1201
+
1202
+
For versions before 8.0.44-35, the minimum value is 0.
1190
1203
1191
1204
### `rocksdb_debug_manual_compaction_delay`
1192
1205
@@ -1564,7 +1577,7 @@ The variable was implemented in [Percona Server for MySQL 8.0.20-11](release-not
1564
1577
1565
1578
#### Version changes
1566
1579
1567
-
The variable was implemented in [Percona Server for MySQL 8.0.25-15](release-notes/Percona-Server-8.0.25-15.md#id1).
1580
+
The variable was implemented in [Percona Server for MySQL 8.0.25-15](./release-notes/Percona-Server-8.0.25-15.md).
1568
1581
1569
1582
#### Improving Write Throughput with Pipelined Writes
1570
1583
@@ -2007,8 +2020,14 @@ When enabled, this option allows index key prefixes longer than 767 bytes (up to
2007
2020
| Default | 1000 |
2008
2021
2009
2022
Specifies the maximum number of info log files to keep.
2010
-
Default value is `1000`.
2011
-
Allowed range is from `1` to `18446744073709551615`.
2023
+
The default number is `1000`.
2024
+
The allowed range is from `1` to `18446744073709551615`.
2025
+
2026
+
#### Version change
2027
+
2028
+
As of Percona Server for MySQL 8.0.44-35, Percona Server sets the minimum value to `1`.
2029
+
2030
+
For versions before 8.0.44-35, the minimum value was `0`.
2012
2031
2013
2032
### `rocksdb_lock_scanned_rows`
2014
2033
@@ -2227,7 +2246,16 @@ Tracks the history for at most `rockdb_mx_compaction_history` completed compacti
2227
2246
2228
2247
This variable has been implemented in [Percona Server for MySQL 8.0.36-28](.//release-notes/8.0.36-28.md).
2229
2248
2230
-
This variable sets `DBOptions::max_file_opening_threads` for RocksDB. The default value is `16`. The minimum value is `1` and the maximum value is 2147483647 (`INT_MAX`).
2249
+
This variable sets `DBOptions::max_file_opening_threads` for RocksDB, controlling the maximum number of threads that can be used to open files concurrently. This helps improve performance when opening multiple files simultaneously.
2250
+
2251
+
The default value is `16`.
2252
+
The minimum value is `1` and the maximum value is `262144`.
2253
+
2254
+
#### Version change
2255
+
2256
+
As of Percona Server for MySQL 8.0.44-35, the maximum value has been reduced from `2147483647` (`INT_MAX`) to `262144`.
2257
+
2258
+
For versions before 8.0.44-35, the maximum value was `2147483647` (`INT_MAX`).
0 commit comments