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
Percona Server for MySQL 8.0.42 introduces a new variable that controls the number of parallel worker threads. These worker threads actively compress Sorted Strings Table (SST) data blocks during a bulk load operation.
Percona Server for MySQL 8.0.42 introduces a new variable that controls unique key constraint checking during bulk load operations. However, users can only modify this variable when a bulk load operation is not active.
@@ -813,7 +854,9 @@ This variable acts as a trigger. Set the variable to `ON`, `rocksdb-compact-lzer
813
854
| Dynamic | Yes |
814
855
| Scope | Global |
815
856
| Data type | Numeric |
816
-
| Default | 0 |
857
+
| Default | 2097152 |
858
+
859
+
As of Percona Server for MySQL 8.0.43, the `--rocksdb-compaction-readahead-size` default value is `2097152`. In previous versions, the default value was `0`.
817
860
818
861
Specifies the size of reads to perform ahead of compaction.
819
862
Default value is `0`.
@@ -1116,6 +1159,18 @@ This variable specifies a sleep, in seconds, to simulate long-running compaction
1116
1159
Specifies whether MyRocks should prevent zero cardinality
Percona Server for MySQL 8.0.42 introduces a new variable that allows users to set up iterator bounds for RocksDB. This functionality applies even when the query range conditions would typically allow the use of bloom filters. This variable provides more granular control over data retrieval, even in scenarios where bloom filters could optimize query performance.
1173
+
1119
1174
### `rocksdb_debug_ttl_ignore_pk`
1120
1175
1121
1176
| Option | Description |
@@ -1271,7 +1326,12 @@ use or other misuse can have serious side effects to the server instance.
1271
1326
| Dynamic | Yes |
1272
1327
| Scope | Global |
1273
1328
| Data type | Boolean |
1274
-
| Default | ON |
1329
+
| Default | OFF |
1330
+
1331
+
1332
+
As of Percona Server for MySQL 8.0.42, the `--rocksdb-disable-instant-ddl` variable has been deprecated and may be removed in a future release.
1333
+
1334
+
As of Percona Server for MySQL 8.0.43, the `--rocksdb-disable-instant-ddl` default value is `OFF`. In previous versions, the default value was `ON`.
1275
1335
1276
1336
The variable was implemented in [Percona Server for MySQL 8.0.33-25](release-notes/8.0.33-25.md).
1277
1337
@@ -1464,10 +1524,24 @@ insensitive). Enabled by default.
1464
1524
| Data type | Boolean |
1465
1525
| Default | OFF |
1466
1526
1527
+
1528
+
As of Percona Server for MySQL 8.0.43, the `--rocksdb-file-checksums` data type is `ENUM`. In previous versions, the data type was `Boolean`.
1529
+
1530
+
As of Percona Server for MySQL 8.0.43, the `--rocksdb-file-checksums` default value is `CHECKSUM_OFF`. In previous versions, the default value was `OFF`.
1531
+
1532
+
As of Percona Server for MySQL 8.0.43, the available values are:
1533
+
1534
+
*`CHECKSUM_OFF`: Nothing happens.
1535
+
1536
+
*`CHECKSUM_WRITE_ONLY`: Write checksums, but skip verification.
1537
+
1538
+
*`CHECKSUM_WRITE_AND_VERIFY`: Write checksums and verify on DB::open.
1539
+
1467
1540
This variable has been implemented in [Percona Server for MySQL 8.0.36-28](.//release-notes/8.0.36-28.md).
1468
1541
1469
1542
This variable controls whether to write and check RocksDB file-level checksums. The default value is `OFF` which means the variable is disabled.
1470
1543
1544
+
1471
1545
### `rocksdb_flush_log_at_trx_commit`
1472
1546
1473
1547
| Option | Description |
@@ -1676,6 +1750,8 @@ Enabled by default.
1676
1750
| Data type | Boolean |
1677
1751
| Default | ON |
1678
1752
1753
+
As of Percona Server for MySQL 8.0.42, the `--rocksdb-large-prefix` variable has been removed.
1754
+
1679
1755
This variable is deprecated in `Percona Server for MySQL 8.0.36-28` and will be removed in a future release.
1680
1756
1681
1757
When enabled, this option allows index key prefixes longer than 767 bytes (up to 3072 bytes). The values for `rocksdb_large_prefix` should be the same between source and replica.
@@ -2604,6 +2680,8 @@ Disabled by default.
2604
2680
| Data type | Boolean |
2605
2681
| Default | ON |
2606
2682
2683
+
As of Percona Server for MySQL 8.0.42, the `--rocksdb-strict-collation-check` variable has been removed.
2684
+
2607
2685
This variable is considered **deprecated** in version 8.0.23-14.
2608
2686
2609
2687
Specifies whether to check and verify
@@ -2620,6 +2698,9 @@ Enabled by default.
2620
2698
| Data type | String |
2621
2699
| Default ||
2622
2700
2701
+
2702
+
As of Percona Server for MySQL 8.0.42, the `--rocksdb-strict-collation-exceptions` variable has been removed.
2703
+
2623
2704
This variable is considered **deprecated** in version 8.0.23-14.
2624
2705
2625
2706
Lists tables (as a regular expression) that should be excluded
0 commit comments