Merge lp:~hrvojem/percona-xtrabackup/doc-116-2.2 into lp:percona-xtrabackup/2.2

Proposed by Hrvoje Matijakovic
Status: Merged
Approved by: Alexey Kopytov
Approved revision: no longer in the source branch.
Merged at revision: 5055
Proposed branch: lp:~hrvojem/percona-xtrabackup/doc-116-2.2
Merge into: lp:percona-xtrabackup/2.2
Diff against target: 164 lines (+14/-15)
12 files modified
storage/innobase/xtrabackup/doc/source/conf.py (+2/-3)
storage/innobase/xtrabackup/doc/source/howtos/recipes_ibkx_compressed.rst (+1/-1)
storage/innobase/xtrabackup/doc/source/howtos/setting_up_replication.rst (+2/-2)
storage/innobase/xtrabackup/doc/source/innobackupex/innobackupex_option_reference.rst (+1/-1)
storage/innobase/xtrabackup/doc/source/intro.rst (+1/-1)
storage/innobase/xtrabackup/doc/source/release-notes/1.6/1.6.4.rst (+1/-1)
storage/innobase/xtrabackup/doc/source/release-notes/2.0/2.0.7.rst (+1/-1)
storage/innobase/xtrabackup/doc/source/release-notes/2.1/2.1.0-alpha1.rst (+1/-1)
storage/innobase/xtrabackup/doc/source/release-notes/2.1/2.1.1.rst (+1/-1)
storage/innobase/xtrabackup/doc/source/release-notes/2.1/2.1.3.rst (+1/-1)
storage/innobase/xtrabackup/doc/source/xtrabackup_bin/lru_dump.rst (+1/-1)
storage/innobase/xtrabackup/doc/source/xtrabackup_bin/xbk_option_reference.rst (+1/-1)
To merge this branch: bzr merge lp:~hrvojem/percona-xtrabackup/doc-116-2.2
Reviewer Review Type Date Requested Status
Alexey Kopytov (community) Approve
Review via email: mp+244967@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Alexey Kopytov (akopytov) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'storage/innobase/xtrabackup/doc/source/conf.py'
--- storage/innobase/xtrabackup/doc/source/conf.py 2014-12-08 19:36:28 +0000
+++ storage/innobase/xtrabackup/doc/source/conf.py 2014-12-18 10:41:50 +0000
@@ -26,9 +26,8 @@
26# Add any Sphinx extension module names here, as strings. They can be extensions26# Add any Sphinx extension module names here, as strings. They can be extensions
27# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.27# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
2828
29extensions = ['sphinx.ext.intersphinx', 'sphinx.ext.todo', 29extensions = ['sphinx.ext.extlinks', 'sphinx.ext.todo',
30 'sphinx.ext.coverage', 'sphinx.ext.ifconfig', 30 'sphinx.ext.coverage', 'sphinx.ext.ifconfig']
31 'sphinx.ext.extlinks']
3231
33# Add any paths that contain templates here, relative to this directory.32# Add any paths that contain templates here, relative to this directory.
34templates_path = ['_templates']33templates_path = ['_templates']
3534
=== modified file 'storage/innobase/xtrabackup/doc/source/howtos/recipes_ibkx_compressed.rst'
--- storage/innobase/xtrabackup/doc/source/howtos/recipes_ibkx_compressed.rst 2013-08-01 08:54:47 +0000
+++ storage/innobase/xtrabackup/doc/source/howtos/recipes_ibkx_compressed.rst 2014-12-18 10:41:50 +0000
@@ -30,7 +30,7 @@
3030
31 $ for bf in `find . -iname "*\.qp"`; do qpress -d $bf $(dirname $bf) && rm $bf; done31 $ for bf in `find . -iname "*\.qp"`; do qpress -d $bf $(dirname $bf) && rm $bf; done
3232
33In |Percona Xtrabackup| 2.1.4 new :option:`innobackupex --decompress` option has been implemented that can be used to decompress the backup: ::33In |Percona XtraBackup| 2.1.4 new :option:`innobackupex --decompress` option has been implemented that can be used to decompress the backup: ::
3434
35 $ innobackupex --decompress /data/backup/2013-08-01_11-24-04/35 $ innobackupex --decompress /data/backup/2013-08-01_11-24-04/
3636
3737
=== modified file 'storage/innobase/xtrabackup/doc/source/howtos/setting_up_replication.rst'
--- storage/innobase/xtrabackup/doc/source/howtos/setting_up_replication.rst 2014-09-25 07:32:11 +0000
+++ storage/innobase/xtrabackup/doc/source/howtos/setting_up_replication.rst 2014-12-18 10:41:50 +0000
@@ -80,7 +80,7 @@
8080
81.. code-block:: console81.. code-block:: console
8282
83 TheMaster$ rsync -avprP -e ssh /path/to/backupdir/$TIMESTAMP TheSlave:/path/to/mysql/83 TheMaster$ rsync -avpP -e ssh /path/to/backupdir/$TIMESTAMP TheSlave:/path/to/mysql/
8484
85After data has been copied you can back up the original or previously installed |MySQL| :term:`datadir` (**NOTE**: Make sure mysqld is shut down before you move the contents of its datadir, or move the snapshot into its datadir.):85After data has been copied you can back up the original or previously installed |MySQL| :term:`datadir` (**NOTE**: Make sure mysqld is shut down before you move the contents of its datadir, or move the snapshot into its datadir.):
8686
@@ -193,7 +193,7 @@
193193
194.. code-block:: console194.. code-block:: console
195195
196 TheSlave$ innobackupex --user=yourDBuser --password=MaGiCiGaM /196 TheSlave$ innobackupex --user=yourDBuser --password=MaGiCiGaM \
197 --slave-info /path/to/backupdir 197 --slave-info /path/to/backupdir
198198
199By using the :option:`--slave-info` |Percona XtraBackup| creates additional file called :file:`xtrabackup_slave_info`.199By using the :option:`--slave-info` |Percona XtraBackup| creates additional file called :file:`xtrabackup_slave_info`.
200200
=== modified file 'storage/innobase/xtrabackup/doc/source/innobackupex/innobackupex_option_reference.rst'
--- storage/innobase/xtrabackup/doc/source/innobackupex/innobackupex_option_reference.rst 2014-09-25 16:10:20 +0000
+++ storage/innobase/xtrabackup/doc/source/innobackupex/innobackupex_option_reference.rst 2014-12-18 10:41:50 +0000
@@ -16,7 +16,7 @@
1616
17.. option:: --close-files17.. option:: --close-files
1818
19 Do not keep files opened. This option is passed directly to xtrabackup. When xtrabackup opens tablespace it normally doesn't close its file handle in order to handle the DDL operations correctly. However, if the number of tablespaces is really huge and can not fit into any limit, there is an option to close file handles once they are no longer accessed. Xtrabackup can produce inconsistent backups with this option enabled. Use at your own risk.19 Do not keep files opened. This option is passed directly to xtrabackup. When xtrabackup opens tablespace it normally doesn't close its file handle in order to handle the DDL operations correctly. However, if the number of tablespaces is really huge and can not fit into any limit, there is an option to close file handles once they are no longer accessed. |Percona XtraBackup| can produce inconsistent backups with this option enabled. Use at your own risk.
2020
21.. option:: --compact21.. option:: --compact
2222
2323
=== modified file 'storage/innobase/xtrabackup/doc/source/intro.rst'
--- storage/innobase/xtrabackup/doc/source/intro.rst 2014-09-14 09:28:19 +0000
+++ storage/innobase/xtrabackup/doc/source/intro.rst 2014-12-18 10:41:50 +0000
@@ -1,5 +1,5 @@
1==========================1==========================
2 About Percona Xtrabackup2 About Percona XtraBackup
3==========================3==========================
44
55
66
=== modified file 'storage/innobase/xtrabackup/doc/source/release-notes/1.6/1.6.4.rst'
--- storage/innobase/xtrabackup/doc/source/release-notes/1.6/1.6.4.rst 2013-08-30 08:52:03 +0000
+++ storage/innobase/xtrabackup/doc/source/release-notes/1.6/1.6.4.rst 2014-12-18 10:41:50 +0000
@@ -4,7 +4,7 @@
44
5Percona is glad to announce the release of Percona XtraBackup 1.6.4 on 19 December, 2011 (Downloads are available `here <http://www.percona.com/downloads/XtraBackup/XtraBackup-1.6.4/>`_ and from the :doc:`Percona Software Repositories </installation>`).5Percona is glad to announce the release of Percona XtraBackup 1.6.4 on 19 December, 2011 (Downloads are available `here <http://www.percona.com/downloads/XtraBackup/XtraBackup-1.6.4/>`_ and from the :doc:`Percona Software Repositories </installation>`).
66
7This release is purely composed of bug fixes and is the current stable release of |Percona| |Xtrabackup|.7This release is purely composed of bug fixes and is the current stable release of |Percona| |XtraBackup|.
88
9In this release we now compile the |xtrabackup| binary against more recent MySQL and Percona Server versions. We now build against: MySQL 5.1.59, MySQL 5.5.17, Percona Server 5.1.59-13.0 and Percona Server 5.5.16-22.0 and get all the InnoDB bug fixes each of these releases contain. Using `xtrabackup` to back up older MySQL or Percona Server releases is still supported.9In this release we now compile the |xtrabackup| binary against more recent MySQL and Percona Server versions. We now build against: MySQL 5.1.59, MySQL 5.5.17, Percona Server 5.1.59-13.0 and Percona Server 5.5.16-22.0 and get all the InnoDB bug fixes each of these releases contain. Using `xtrabackup` to back up older MySQL or Percona Server releases is still supported.
1010
1111
=== modified file 'storage/innobase/xtrabackup/doc/source/release-notes/2.0/2.0.7.rst'
--- storage/innobase/xtrabackup/doc/source/release-notes/2.0/2.0.7.rst 2013-08-30 08:52:03 +0000
+++ storage/innobase/xtrabackup/doc/source/release-notes/2.0/2.0.7.rst 2014-12-18 10:41:50 +0000
@@ -34,7 +34,7 @@
3434
35 Fixed couple of warnings found in |innobackupex| when all warnings have been made ``FATAL``. Bug fixed :bug:`1116177`.35 Fixed couple of warnings found in |innobackupex| when all warnings have been made ``FATAL``. Bug fixed :bug:`1116177`.
3636
37 If there are thousands of tables and slow IO then |Xtrabackup| can spend a lot of time opening all the tablespaces. Optimization has been implemented and |Percona XtraBackup| now avoids loading non-relevant tablespaces when partial backup is being taken which speeds up the backup process. Bug fixed :bug:`1130145`.37 If there are thousands of tables and slow IO then |xtrabackup| can spend a lot of time opening all the tablespaces. Optimization has been implemented and |Percona XtraBackup| now avoids loading non-relevant tablespaces when partial backup is being taken which speeds up the backup process. Bug fixed :bug:`1130145`.
3838
39 |Percona XtraBackup| didn't initialize per-thread data in the log copying thread which could cause |Percona XtraBackup| to crash. Bug fixed :bug:`1166888`.39 |Percona XtraBackup| didn't initialize per-thread data in the log copying thread which could cause |Percona XtraBackup| to crash. Bug fixed :bug:`1166888`.
4040
4141
=== modified file 'storage/innobase/xtrabackup/doc/source/release-notes/2.1/2.1.0-alpha1.rst'
--- storage/innobase/xtrabackup/doc/source/release-notes/2.1/2.1.0-alpha1.rst 2013-05-10 09:29:17 +0000
+++ storage/innobase/xtrabackup/doc/source/release-notes/2.1/2.1.0-alpha1.rst 2014-12-18 10:41:50 +0000
@@ -11,7 +11,7 @@
11New features11New features
12------------12------------
1313
14 |Percona Xtrabackup| now has support for :ref:`compact_backups_ibk`. This feature can be used for taking the backups that will take less amount of disk space.14 |Percona XtraBackup| now has support for :ref:`compact_backups_ibk`. This feature can be used for taking the backups that will take less amount of disk space.
1515
16 |Percona XtraBackup| has implemented :ref:`encrypted_backups_ibk`. This feature can be used to encrypt/decrypt both local and streamed backups in order to add another layer of protection to the backups.16 |Percona XtraBackup| has implemented :ref:`encrypted_backups_ibk`. This feature can be used to encrypt/decrypt both local and streamed backups in order to add another layer of protection to the backups.
1717
1818
=== modified file 'storage/innobase/xtrabackup/doc/source/release-notes/2.1/2.1.1.rst'
--- storage/innobase/xtrabackup/doc/source/release-notes/2.1/2.1.1.rst 2013-05-14 06:09:45 +0000
+++ storage/innobase/xtrabackup/doc/source/release-notes/2.1/2.1.1.rst 2014-12-18 10:41:50 +0000
@@ -9,7 +9,7 @@
9New features9New features
10------------10------------
1111
12 |Percona Xtrabackup| now has support for :ref:`compact_backups_ibk`. This feature can be used for taking the backups that will take less amount of disk space. GA release now contains new :option:`innobackupex --rebuild-threads` that can be used to specify the number of threads started by XtraBackup when rebuilding secondary indexes on ``innobackupex --apply-log --rebuild-indexes``. This allows parallel processing of individual tables when rebuilding the index. 12 |Percona XtraBackup| now has support for :ref:`compact_backups_ibk`. This feature can be used for taking the backups that will take less amount of disk space. GA release now contains new :option:`innobackupex --rebuild-threads` that can be used to specify the number of threads started by XtraBackup when rebuilding secondary indexes on ``innobackupex --apply-log --rebuild-indexes``. This allows parallel processing of individual tables when rebuilding the index.
13 13
14 |Percona XtraBackup| has implemented :ref:`encrypted_backups_ibk`. This feature can be used to encrypt/decrypt both local and streamed backups in order to add another layer of protection to the backups.14 |Percona XtraBackup| has implemented :ref:`encrypted_backups_ibk`. This feature can be used to encrypt/decrypt both local and streamed backups in order to add another layer of protection to the backups.
1515
1616
=== modified file 'storage/innobase/xtrabackup/doc/source/release-notes/2.1/2.1.3.rst'
--- storage/innobase/xtrabackup/doc/source/release-notes/2.1/2.1.3.rst 2013-05-22 11:21:52 +0000
+++ storage/innobase/xtrabackup/doc/source/release-notes/2.1/2.1.3.rst 2014-12-18 10:41:50 +0000
@@ -4,7 +4,7 @@
44
5Percona is glad to announce the release of |Percona XtraBackup| 2.1.3 on May 22nd 2013. Downloads are available from our download site `here <http://www.percona.com/downloads/XtraBackup/XtraBackup-2.1.3/>`_ and :doc:`Percona Software Repositories </installation>`. 5Percona is glad to announce the release of |Percona XtraBackup| 2.1.3 on May 22nd 2013. Downloads are available from our download site `here <http://www.percona.com/downloads/XtraBackup/XtraBackup-2.1.3/>`_ and :doc:`Percona Software Repositories </installation>`.
66
7This release fixes a high priority bug. It's advised to upgrade your latest 2.1 version to 2.1.3 if you're using the |Percona Xtrabackup| with |Percona XtraDB Cluster|. This release is the latest stable release in the 2.1 series.7This release fixes a high priority bug. It's advised to upgrade your latest 2.1 version to 2.1.3 if you're using the |Percona XtraBackup| with |Percona XtraDB Cluster|. This release is the latest stable release in the 2.1 series.
88
9Bugs Fixed9Bugs Fixed
10----------10----------
1111
=== modified file 'storage/innobase/xtrabackup/doc/source/xtrabackup_bin/lru_dump.rst'
--- storage/innobase/xtrabackup/doc/source/xtrabackup_bin/lru_dump.rst 2013-08-30 09:55:04 +0000
+++ storage/innobase/xtrabackup/doc/source/xtrabackup_bin/lru_dump.rst 2014-12-18 10:41:50 +0000
@@ -2,7 +2,7 @@
2LRU dump backup2LRU dump backup
3================3================
44
5This feature reduces the warm up time by restoring buffer pool state from :file:`ib_lru_dump` file after restart. |Percona Xtrabackup| discovers :file:`ib_lru_dump` and backs it up automatically.5This feature reduces the warm up time by restoring buffer pool state from :file:`ib_lru_dump` file after restart. |Percona XtraBackup| discovers :file:`ib_lru_dump` and backs it up automatically.
66
7.. image:: /_static/lru_dump.png7.. image:: /_static/lru_dump.png
88
99
=== modified file 'storage/innobase/xtrabackup/doc/source/xtrabackup_bin/xbk_option_reference.rst'
--- storage/innobase/xtrabackup/doc/source/xtrabackup_bin/xbk_option_reference.rst 2014-09-10 11:42:45 +0000
+++ storage/innobase/xtrabackup/doc/source/xtrabackup_bin/xbk_option_reference.rst 2014-12-18 10:41:50 +0000
@@ -19,7 +19,7 @@
1919
20.. option:: --close-files20.. option:: --close-files
2121
22 Do not keep files opened. When xtrabackup opens tablespace it normally doesn't close its file handle in order to handle the DDL operations correctly. However, if the number of tablespaces is really huge and can not fit into any limit, there is an option to close file handles once they are no longer accessed. Xtrabackup can produce inconsistent backups with this option enabled. Use at your own risk.22 Do not keep files opened. When xtrabackup opens tablespace it normally doesn't close its file handle in order to handle the DDL operations correctly. However, if the number of tablespaces is really huge and can not fit into any limit, there is an option to close file handles once they are no longer accessed. |Percona XtraBackup| can produce inconsistent backups with this option enabled. Use at your own risk.
2323
24.. option:: --compact 24.. option:: --compact
2525

Subscribers

People subscribed via source and target branches