Merge lp:~hrvojem/percona-xtrabackup/rn-2.0.5-2.1 into lp:percona-xtrabackup/2.1

Proposed by Hrvoje Matijakovic
Status: Merged
Approved by: Stewart Smith
Approved revision: no longer in the source branch.
Merged at revision: 481
Proposed branch: lp:~hrvojem/percona-xtrabackup/rn-2.0.5-2.1
Merge into: lp:percona-xtrabackup/2.1
Diff against target: 63 lines (+35/-2)
3 files modified
doc/source/innobackupex/innobackupex_option_reference.rst (+4/-0)
doc/source/release-notes/2.0/2.0.4.rst (+0/-2)
doc/source/release-notes/2.0/2.0.5.rst (+31/-0)
To merge this branch: bzr merge lp:~hrvojem/percona-xtrabackup/rn-2.0.5-2.1
Reviewer Review Type Date Requested Status
Stewart Smith (community) Approve
Review via email: mp+143285@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Stewart Smith (stewart) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'doc/source/innobackupex/innobackupex_option_reference.rst'
2--- doc/source/innobackupex/innobackupex_option_reference.rst 2012-11-22 09:55:05 +0000
3+++ doc/source/innobackupex/innobackupex_option_reference.rst 2013-01-15 12:08:25 +0000
4@@ -38,6 +38,10 @@
5
6 This option accepts a string argument that specifies what file to read the default MySQL options from. It is also passed directly to :program:`xtrabackup` 's defaults-file option. See the :program:`xtrabackup` :doc:`documentation <../xtrabackup_bin/xtrabackup_binary>` for details.
7
8+.. option:: --defaults-extra-file=[MY.CNF]
9+
10+ This option specifies what extra file to read the default |MySQL| options from before the standard defaults-file. The option accepts a string argument. It is also passed directly to xtrabackup's --defaults-extra-file option. See the :program:`xtrabackup` :doc:`documentation <../xtrabackup_bin/xtrabackup_binary>` for details.
11+
12 .. option:: --defaults-group=GROUP-NAME
13
14 This option accepts a string argument that specifies the group which should be read from the configuration file. This is needed if you use mysqld_multi.
15
16=== modified file 'doc/source/release-notes/2.0/2.0.4.rst'
17--- doc/source/release-notes/2.0/2.0.4.rst 2012-11-29 16:23:29 +0000
18+++ doc/source/release-notes/2.0/2.0.4.rst 2013-01-15 12:08:25 +0000
19@@ -21,8 +21,6 @@
20
21 * In case ``safe-slave-backup-timeout`` was reached when using the :option:`safe-slave-backup` option, ``SQL_THREAD`` was left in stopped state causing the slave thread to lag behind. This was fixed by checking the initial ``SQL_THREAD`` state and starting it before terminating with a timeout error and starting the ``SQL_THREAD`` only if it was running initially. Bug fixed :bug:`1037379` (*Alexey Kopytov*).
22
23- * In case of streaming backups, |innobackupex| would resume the Xtrabackup process and then wait for it to finish before running ``UNLOCK TABLES``. This caused database to be unnecessarily locked with ``FLUSH TABLES WITH READ LOCK``. Innobackupex now waits only till log copying is finished to unlock the databases. Bug fixed :bug:`1055989` (*Alexey Kopytov*).
24-
25 * |Xtrabackup| would fail on ``--apply-log`` when filesystem didn't support Linux AIO. Bug fixed :bug:`1065561` (*Alexey Kopytov*).
26
27 * |Xtrabackup| binary would ignore :option:`innodb_use_native_aio` when it's specified either in :file:`my.cnf` or as a command line option. Bug fixed :bug:`1068459` (*Alexey Kopytov*).
28
29=== added file 'doc/source/release-notes/2.0/2.0.5.rst'
30--- doc/source/release-notes/2.0/2.0.5.rst 1970-01-01 00:00:00 +0000
31+++ doc/source/release-notes/2.0/2.0.5.rst 2013-01-15 12:08:25 +0000
32@@ -0,0 +1,31 @@
33+============================
34+|Percona| |XtraBackup| 2.0.5
35+============================
36+
37+Percona is glad to announce the release of Percona XtraBackup 2.0.5 on January 18th, 2013. Downloads are available from our download site `here <http://www.percona.com/downloads/XtraBackup/XtraBackup-2.0.5/>`_ and :doc:`Percona Software Repositories </installation>`.
38+
39+This release is the current GA (Generally Available) stable release in the 2.0 series.
40+
41+New Features
42+=============
43+
44+ New option :option:`--defaults-extra-file` has been introduced. This option specifies from what extra file to read the default |MySQL| options before the standard ``defaults-file``. It can be used to load the user/password combination for the dedicated backup user from a separate configuration file, to avoid storing it in the crontab or a script somewhere in the system.
45+
46+Bugs Fixed
47+==========
48+
49+ In case of streaming backups, |innobackupex| would resume the |XtraBackup| process and then wait for it to finish before running ``UNLOCK TABLES``. This caused database to be unnecessarily locked with ``FLUSH TABLES WITH READ LOCK``. Innobackupex now waits only till log copying is finished to unlock the databases. Bug fixed :bug:`1055989` (*Alexey Kopytov*).
50+
51+ |innobackupex| error messages referencing the data directory have been extended to show the path of the data directory mentioned in the error message. Bug fixed :bug:`1089375` (*Hartmut Holzgraefe*).
52+
53+ Partitioned tables were not correctly handled by the :option:`--databases`, :option:`--include`, :option:`--tables-file` options of |innobackupex|, and by the :option:`--tables` and :option:`--tables-file` options of |XtraBackup|. Fixed by removing the partition suffix (#P#...) before doing filtering. Bug fixed :bug:`711166` (*Sergei Glushchenko*).
54+
55+ When built-in compression was used, |XtraBackup| was doing unbuffered writes to the destination file or stream in very small chunks which in return caused inefficient I/O. Fixed by using a 1M buffer for output similar to the uncompressed backups. Bug fixed :bug:`1095249` (*Alexey Kopytov*).
56+
57+ Unnecessary long sleep() in |innobackupex| lead to ``FLUSH TABLES WITH READ LOCK`` taking too long. Fixed by replacing 2 seconds sleep interval with 100 milliseconds one. Bug fixed :bug:`1095551` (*Sergei Glushchenko*).
58+
59+ If |innobackupex| would crash it would leave the ``xtrabackup_suspended`` file on the filesystem. This could then cause |innobackupex| to think |XtraBackup| has suspended itself the moment it started, and then when xtrabackup actually does suspend itself innobackupex would wait for it to end and wouldn't re-remove the suspend_file, leading to a wait deadlock. Fixed by removing the stale ``xtrabackup_suspended`` file when |innobackupex| is started. Bug fixed :bug:`1007446` (*George Ormond Lorch III*).
60+
61+ |innobackupex| would fail to recognize MariaDB 5.2 and MariaDB 5.3. Fixed by augmenting version checks in |innobackupex|. Bug fixed :bug:`733665` (*Daniƫl van Eeden*, *Alexey Kopytov*).
62+
63+Other bug fixes: bug fixed :bug:`924492` (*Alexey Kopytov*), bug fixed :bug:`1097158` (*Alexey Kopytov*), bug fixed :bug:`1081882` (*Alexey Kopytov*), bug fixed :bug:`1096584` (*Alexey Kopytov*),

Subscribers

People subscribed via source and target branches