Merge lp:~hrvojem/percona-xtradb-cluster/rn-5.5.30 into lp:percona-xtradb-cluster/percona-xtradb-cluster-5.5

Proposed by Hrvoje Matijakovic
Status: Merged
Approved by: Hrvoje Matijakovic
Approved revision: no longer in the source branch.
Merged at revision: 385
Proposed branch: lp:~hrvojem/percona-xtradb-cluster/rn-5.5.30
Merge into: lp:percona-xtradb-cluster/percona-xtradb-cluster-5.5
Diff against target: 133 lines (+88/-7)
4 files modified
doc-pxc/source/conf.py (+2/-2)
doc-pxc/source/installation/apt_repo.rst (+1/-5)
doc-pxc/source/release-notes/Percona-XtraDB-Cluster-5.5.30-23.7.4.rst (+84/-0)
doc-pxc/source/release-notes/release-notes_index.rst (+1/-0)
To merge this branch: bzr merge lp:~hrvojem/percona-xtradb-cluster/rn-5.5.30
Reviewer Review Type Date Requested Status
Raghavendra D Prabhu (community) Approve
Review via email: mp+157419@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Raghavendra D Prabhu (raghavendra-prabhu) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'doc-pxc/source/conf.py'
2--- doc-pxc/source/conf.py 2013-02-11 16:09:06 +0000
3+++ doc-pxc/source/conf.py 2013-04-16 18:30:37 +0000
4@@ -53,9 +53,9 @@
5 # built documents.
6 #
7 # The short X.Y version.
8-version = '5.5.29'
9+version = '5.5.30'
10 # The full version, including alpha/beta/rc tags.
11-release = '5.5.29-23.7.2'
12+release = '5.5.30-23.7.4'
13
14 # The language for content autogenerated by Sphinx. Refer to documentation
15 # for a list of supported languages.
16
17=== modified file 'doc-pxc/source/installation/apt_repo.rst'
18--- doc-pxc/source/installation/apt_repo.rst 2013-02-01 13:41:34 +0000
19+++ doc-pxc/source/installation/apt_repo.rst 2013-04-16 18:30:37 +0000
20@@ -6,11 +6,7 @@
21
22 *Debian* and *Ubuntu* packages from *Percona* are signed with a key. Before using the repository, you should add the key to :program:`apt`. To do that, run the following commands: ::
23
24- $ gpg --keyserver hkp://keys.gnupg.net --recv-keys 1C4CBDCDCD2EFD2A
25- ... [some output removed] ...
26- gpg: imported: 1
27-
28- $ gpg -a --export CD2EFD2A | sudo apt-key add -
29+ $ apt-key adv --keyserver keys.gnupg.net --recv-keys 1C4CBDCDCD2EFD2A
30
31 Add this to :file:`/etc/apt/sources.list`, replacing ``VERSION`` with the name of your distribution: ::
32
33
34=== added file 'doc-pxc/source/release-notes/Percona-XtraDB-Cluster-5.5.30-23.7.4.rst'
35--- doc-pxc/source/release-notes/Percona-XtraDB-Cluster-5.5.30-23.7.4.rst 1970-01-01 00:00:00 +0000
36+++ doc-pxc/source/release-notes/Percona-XtraDB-Cluster-5.5.30-23.7.4.rst 2013-04-16 18:30:37 +0000
37@@ -0,0 +1,84 @@
38+.. rn:: 5.5.30-23.7.4
39+
40+========================================
41+ |Percona XtraDB Cluster| 5.5.30-23.7.4
42+========================================
43+
44+Percona is glad to announce the release of |Percona XtraDB Cluster| on April 16th, 2013. Binaries are available from `downloads area <http://www.percona.com/downloads/Percona-XtraDB-Cluster/5.5.30-23.7.4/>`_ or from our :doc:`software repositories </installation>`.
45+
46+This is an General Availability release. We did our best to eliminate bugs and problems during the testing release, but this is a software, so bugs are expected. If you encounter them, please report them to our `bug tracking system <https://bugs.launchpad.net/percona-xtradb-cluster/+filebug>`_.
47+
48+New Features
49+============
50+
51+ |Percona XtraDB Cluster| has implemented initial implementation of weighted quorum. Weight for node can be assigned via :variable:`pc.weight` option in the :variable:`wsrep_provider_options` variable. Accepted values are in the range [0, 255] (inclusive). Quorum is computed using weighted sum over group members.
52+
53+ |Percona XtraDB Cluster| will now be shipped with the ``libjemalloc`` library. Benchmark showing the impact of memory allocators on |MySQL| performance can be found in this `blogpost <http://www.mysqlperformanceblog.com/2012/07/05/impact-of-memory-allocators-on-mysql-performance/>`_.
54+
55+ This release of |Percona XtraDB Cluster| has fixed number of foreign key and packaging bugs.
56+
57+Bugs fixed
58+==========
59+
60+ Fixed yum dependencies that were causing conflicts in ``CentOS`` 6.3 during installation. Bug fixed :bug:`1031427` (*Ignacio Nin*).
61+
62+ In case the |Percona XtraDB Cluster| was built from the source rpm, wsrep revision information would be missing. Bug fixed :bug:`1128906` (*Alexey Bychko*).
63+
64+ The method of generating md5 digest over tuples in a table with no primary key was not deterministic and this could cause a node failure. Bug fixed :bug:`1019473` (*Seppo Jaakola*).
65+
66+ |Percona XtraDB Cluster| was built with YaSSL which could cause some of the programs that use it to crash. Fixed by building packages with OpenSSL support rather than the bundled YaSSL library. Bug fixed :bug:`1104977` (*Raghavendra D Prabhu*).
67+
68+ Clustercheck script would hang in case the |MySQL| server on a node is hung. As a consequence clustercheck script would never fail-over that server. Bug fixed :bug:`1035927` (*Raghavendra D Prabhu*).
69+
70+ High values in variables :variable:`evs.send_window` and :variable:`evs.user_send_window` could trigger cluster crash under high load. Bug fixed :bug:`1080539` (*Teemu Ollakka*).
71+
72+ Standard |MySQL| port would be used when port number isn't explicitly defined in the :variable:`wsrep_node_incoming_address`. Bug fixed :bug:`1082406` (*Alex Yurchenko*).
73+
74+ Dropping a non-existing temporary table would be replicated when TOI was used in :variable:`wsrep_OSU_method` variable. This bug was fixed for the case when ``DROP TEMPORARY TABLE`` statement was used, but it will still replicate in case ``DROP TABLE`` statement is used on a temporary table. Bug fixed :bug:`1084702` (*Seppo Jaakola*).
75+
76+ In case two nodes in a 3-node cluster had to abort due to inconsistency, one wouldn't correctly notify the surviving node which would lead to surviving node to loose the primary component and cause subsequent downtime. Bug fixed :bug:`1108165` (*Alex Yurchenko*).
77+
78+ In some cases non-uniform foreign key reference could cause a slave crash. Fixed by using primary key of the child table when appending exclusive key for cascading delete operation. Bug fixed :bug:`1089490` (*Seppo Jaakola*).
79+
80+ Parallel applying would fail in case mixed ``CHAR`` and ``VARCHAR`` columns would be used in foreign key definitions. Bug fixed :bug:`1100496` (*Seppo Jaakola*).
81+
82+ *Debian* packages included the old version of **innotop**. Fixed by removing **innotop** and its ``InnoDBParser`` Perl package from source and *Debian* installation. Bug fixed :bug:`1032139` (*Alexey Bychko*).
83+
84+ The mysqld_safe script would fail to retrieve the galera replication position on ``Ubuntu`` 10.04, because the different shell was used. Bug fixed :bug:`1108431` (*Alex Yurchenko*).
85+
86+ Cascading foreign key constraint could lead to unresolved replication conflict and leave a slave hanging. Bug fixed :bug:`1130888` (*Seppo Jaakola*).
87+
88+ If |MySQL| replication threads were started before running wsrep recovery, this would lead to memory corruption and server crash. Bug fixed :bug:`1132974` (*Seppo Jaakola*).
89+
90+ Conflicting prepared statements in multi-master use case could cause node to hang. This was happening due to prepared statement execution loop, which does not honor wsrep status codes correctly. Bug fixed :bug:`1144911` (*Seppo Jaakola*).
91+
92+ :ref:`state_snapshot_transfer` with |Xtrabackup| would fail if the ``tmpdir`` was specified more than once in the |MySQL| configuration file (:file:`my.cnf`). Bugs fixed :bug:`1160047` and :bug:`1086978` (*Raghavendra D Prabhu*).
93+
94+ Issues with compiling Galera on the ``ARM`` architecture has been fixed. Bug fixed :bug:`1133047` (*Alex Yurchenko*).
95+
96+ Upstream bugfix for bug :mysqlbug:`59354` triggered a regression that could cause transaction conflicts. Bug fixed :bug:`1158221` (*Seppo Jaakola*).
97+
98+ Galera builds would fail when they were built with the new ``boost`` library. Bug fixed :bug:`1131736` (*Alex Yurchenko*).
99+
100+ Folder ``lost+found`` wasn't included in the rsync SST filter, which caused the SST failure due to insufficient privileges. Fixed by excluding ``lost+found`` folder if found. Bug fixed :bug:`1154095` (*Alex Yurchenko*).
101+
102+ If variable :variable:`innodb_thread_concurrency` has been defined to throttle |InnoDB| access, and work load contained DDL statements, a cluster node could remain hanging for unresolved MDL conflict. Fixed by adding a new method to cancel a thread waiting for |InnoDB| concurrency. Bug fixed :bug:`1155183` (*Seppo Jaakola*).
103+
104+ Handling of the network issues in Galera has been improved. Bug fixed :bug:`1153727` (*Teemu Ollakka*).
105+
106+ Fixed the wrong path in the ``/etc/xinetd.d/mysqlchk`` script. Bugs fixed :bug:`1000761` and :bug:`1132934` (*Raghavendra D Prabhu*).
107+
108+ When upgrading the Percona-XtraDB-Cluster-server package, ``/usr/bin/clustercheck`` would get overwritten, and any changes (such as username and password) would be lost. Bug fixed :bug:`1158443` (*Raghavendra D Prabhu*).
109+
110+ In case ``CREATE TABLE AS SELECT`` statement was running in parallel with the DDL statement on the selected table, in some cases first statement could be left hanging. Bug fixed :bug:`1164893` (*Seppo Jaakola*).
111+
112+ Galera builds would fail when ``gcc`` 4.8 was used. Bug fixed :bug:`1164992` (*Alex Yurchenko*).
113+
114+ ``Percona-XtraDB-Cluster-galera`` package version number didn't match the :variable:`wsrep_provider_version` one. Bug fixed :bug:`1111672` (*Alexey Bychko*).
115+
116+ Only ``rpm`` debug build was available for |Percona XtraDB Cluster|, fixed by providing the ``deb`` debug build as well. Bug fixed :bug:`1096123` (*Ignacio Nin*).
117+
118+Other bug fixes: bug fixed :bug:`1162421` (*Seppo Jaakola*), bug fixed :bug:`1093054` (*Alex Yurchenko*), bug fixed :bug:`1166060` (*Teemu Ollakka*), bug fixed :bug:`1166065` (*Teemu Ollakka*).
119+
120+Based on `Percona Server 5.5.30-30.2 <http://www.percona.com/doc/percona-server/5.5/release-notes/Percona-Server-5.5.30-30.2.html>`_ including all the bug fixes in it and on `Codership wsrep API 5.5.30-23.7.4 <https://launchpad.net/codership-mysql/+milestone/5.5.30-23.7.4>`_, |Percona XtraDB Cluster| 5.5.30-23.7.4 is now the current stable release. All of |Percona|'s software is open-source and free.
121+
122
123=== modified file 'doc-pxc/source/release-notes/release-notes_index.rst'
124--- doc-pxc/source/release-notes/release-notes_index.rst 2013-02-11 16:09:06 +0000
125+++ doc-pxc/source/release-notes/release-notes_index.rst 2013-04-16 18:30:37 +0000
126@@ -6,6 +6,7 @@
127 :maxdepth: 1
128 :glob:
129
130+ Percona-XtraDB-Cluster-5.5.30-23.7.4
131 Percona-XtraDB-Cluster-5.5.29-23.7.2
132 Percona-XtraDB-Cluster-5.5.29
133 Percona-XtraDB-Cluster-5.5.28

Subscribers

People subscribed via source and target branches