Skip to content

Commit 0a6cae4

Browse files
PXC-4599 [Doc] Release notes for - PXC 8.4.4
new file: docs/release-notes/8.4.4-4.md modified: docs/release-notes/release-notes_index.md modified: mkdocs-base.yml modified: variables.yml
1 parent dc54c64 commit 0a6cae4

File tree

4 files changed

+70
-4
lines changed

4 files changed

+70
-4
lines changed

docs/release-notes/8.4.4-4.md

+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
# Percona XtraDB Cluster 8.4.4-4 (2025-03-)
2+
3+
Percona XtraDB Cluster (PXC) supports critical business applications in both cloud and on-premises environments, including public, private, and hybrid setups. Our free, open source, enterprise-grade solution includes the high availability and security features your business requires to meet your customer expectations and business goals.
4+
5+
## Release highlights
6+
7+
Percona XtraDB Cluster 8.4.4-4 is based on Percona Server for MySQL and includes all improvements and bug fixes available in the [Percona Server for MySQL 8.4.4-4 (2024-12-18) release notes](https://docs.percona.com/percona-server/8.4/release-notes/8.4.4-4.html).
8+
9+
### Percona XtraDB Cluster 8.4.4-4
10+
11+
Implements the [Clone plugin for State Snapshot Transfer (SST) Method](https://docs.percona.com/percona-xtradb-cluster/8.4/clone-sst.html). The Clone SST is a modern and efficient method that leverages MySQL's native cloning capabilities to transfer data from a donor node to a Joiner node. It is faster and more resource-efficient compared to traditional methods like xtrabackup or rsync.
12+
13+
### Percona Server for MySQL 8.4.4-4
14+
15+
Improves the [Data masking](https://docs.percona.com/percona-server/8.4/data-masking-overview.md) performance by introducing an internal term cache. The new cache speeds up lookups for `gen_blocklist()` and `gen_dictionary()` functions by storing dictionary data in memory. However, if the dictionary table is modified directly (outside of the proper functions), the cache may become out of sync. To fix this, use the `new masking_dictionaries_flush()` function.
16+
17+
Changes also affect row-based replication: dictionary changes on the source server are replicated, but the term cache on the replica doesn’t update immediately. To address this, a new system setting, `component_masking_functions.dictionaries_flush_interval_seconds()`, can be set to automatically refresh the cache at specified intervals, helping replicas stay in sync.
18+
19+
Find more detailed information in the [Data masking overview](https://docs.percona.com/percona-server/8.4/data-masking-overview.md) and in the [Data masking component functions](https://docs.percona.com/percona-server/8.4/data-masking-function-list.md).
20+
21+
### MySQL 8.4.4
22+
23+
Improvements and bug fixes introduced by Oracle for MySQL 8.4.4 and included in Percona Server for MySQL are the following:
24+
25+
* Fixed an assertion in debug builds where certain IO buffer serializations caused system hangs. (Bug #37139618)
26+
27+
* Resolved a failure when dropping the primary key and adding a new `AUTO_INCREMENT` column as the primary key in descending order using the `INPLACE` algorithm resulted in failure. (Bug #36658450)
28+
29+
* Fixed incorrect results, including missing rows, in queries that used a descending primary key with the `index_merge` optimization. (Bug #106207, Bug #33767814)
30+
31+
* Addressed a replication channel issue where MySQL failed to stop the channel properly when large transactions were being processed, and `STOP REPLICA` was requested. This issue also prevented graceful server shutdown, requiring process termination or system restart. (Bug #115966, Bug #37008345)
32+
33+
Find the complete list of bug fixes and changes in the [MySQL 8.4.4 release notes](https://dev.mysql.com/doc/relnotes/mysql/8.4/en/news-8-4-4.html).
34+
35+
## Improvements
36+
37+
[PXC-4469](https://perconadev.atlassian.net/browse/PXC-4469): Implements the [Clone plugin for State Snapshot Transfer (SST) Method](https://docs.percona.com/percona-xtradb-cluster/8.4/clone-sst.html).
38+
39+
## Bug fixes
40+
41+
* [PXC-4173](https://perconadev.atlassian.net/browse/PXC-4173): The Percona XtraDB Cluster node stalled when parallel replication workers executed Data Definition Language (DDL) through an asynchronous node.
42+
43+
* [PXC-4390](https://perconadev.atlassian.net/browse/PXC-4390): The `wsrep_group_commit_queue` option was removed because caused deadlock bugs.
44+
45+
* [PXC-4498](https://perconadev.atlassian.net/browse/PXC-4498): The Percona XtraDB Cluster node stalled and caused the cluster to stop responding.
46+
47+
* [PXC-4393](https://perconadev.atlassian.net/browse/PXC-4393): When a donor pipeline had more than two commands, only the final command's failure was registered. However, the error message incorrectly pointed to the second-to-last command.
48+
49+
* [PXC-4404](https://perconadev.atlassian.net/browse/PXC-4404): Setting the `wsrep_preordered=ON` option caused protocol violations.
50+
51+
* [PXC-4504](https://perconadev.atlassian.net/browse/PXC-4504): The `DROP PROCEDURE/FUNCTION IF EXISTS` option generated a local Global Transaction Identifier (GTID) event.
52+
53+
* [PXC-4573](https://perconadev.atlassian.net/browse/PXC-4573): The `mysql.pxc.sst.role` lacked the `INNODB_REDO_LOG_ARCHIVE` privilege when the State Snapshot Transfer (SST) required InnoDB redo log archiving.
54+
55+
## Useful links
56+
57+
* The [Percona XtraDB Cluster installation instructions](https://www.percona.com/doc/percona-xtradb-cluster/8.4/install/index.html)
58+
59+
* The [Percona XtraDB Cluster downloads](https://www.percona.com/downloads/Percona-XtraDB-Cluster-LATEST/#)
60+
61+
* The [Percona XtraDB Cluster GitHub location](https://github.com/percona/percona-xtradb-cluster)
62+
63+
* To contribute to the documentation, review the [Documentation Contribution Guide](https://github.com/percona/pxc-docs/blob/8.0/contributing.md)

docs/release-notes/release-notes_index.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Percona XtraDB Cluster {{vers}} release notes index
22

3+
* [Percona XtraDB Cluster 8.4.4-4 (2025-03-)](8.4.4-4.md)
4+
35
* [Percona XtraDB Cluster 8.4.3-3 (2025-01-21)](8.4.3-3.md)
46

57
* [Percona XtraDB Cluster 8.4.2-2 (2024-12-11)](8.4.2-2.md)

mkdocs-base.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ plugins:
126126
with-pdf: # https://github.com/orzih/mkdocs-with-pdf
127127
output_path: '_pdf/PerconaXtradbCluster-8.4.pdf'
128128
cover_title: 'Percona XtraDB Cluster Documentation'
129-
cover_subtitle: 8.4.3-3 (2025-01-21)
129+
cover_subtitle: 8.4.4-4 (2025-03-)
130130
author: 'Percona Technical Documentation Team'
131131
cover_logo: docs/_static/Percona_Logo_Color.png
132132
debug_html: false
@@ -155,6 +155,7 @@ nav:
155155
- get-help.md
156156
- Release notes:
157157
- Release notes index: release-notes/release-notes_index.md
158+
- release-notes/8.4.4-4.md
158159
- release-notes/8.4.3-3.md
159160
- release-notes/8.4.2-2.md
160161
- release-notes/8.4.0-1.md

variables.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# variables for HTML output
22

3-
release: '8.4.3-3'
3+
release: '8.4.4-4'
44
version: '8.4'
55
vers: '8.4' # we are going to use it instead of version
66
pkg: 'pxc-84-lts'
7-
release_date: '2025-01-21'
8-
title_date: '2025-01-21'
7+
release_date: '2025-03-'
8+
title_date: '2025-03-'

0 commit comments

Comments
 (0)