Merge lp:~hrvojem/percona-server/bug924194_5.1 into lp:percona-server/5.1

Proposed by Hrvoje Matijakovic
Status: Merged
Approved by: Alexey Kopytov
Approved revision: no longer in the source branch.
Merged at revision: 423
Proposed branch: lp:~hrvojem/percona-server/bug924194_5.1
Merge into: lp:percona-server/5.1
Diff against target: 63 lines (+12/-5)
3 files modified
doc/source/diagnostics/innodb_stats.rst (+1/-1)
doc/source/glossary.rst (+3/-0)
doc/source/release-notes/Percona-Server-5.1.57-12.8.rst (+8/-4)
To merge this branch: bzr merge lp:~hrvojem/percona-server/bug924194_5.1
Reviewer Review Type Date Requested Status
Alexey Kopytov (community) Approve
Review via email: mp+90892@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 'doc/source/diagnostics/innodb_stats.rst'
--- doc/source/diagnostics/innodb_stats.rst 2012-01-09 04:24:35 +0000
+++ doc/source/diagnostics/innodb_stats.rst 2012-01-31 16:05:29 +0000
@@ -60,7 +60,7 @@
6060
61If this option is enabled, |XtraDB| uses the ``SYS_STATS`` system table to store statistics of table indexes. Also, when |InnoDB| opens a table for the first time, it loads the statistics from ``SYS_STATS`` instead of sampling index pages. If you use a high ``stats_sample_pages`` value, the first open of a table is expensive. In such a case, this option will help. Note: This option may cause less frequent updating of statistics. So, you should intentionally use the ``ANALYZE TABLE`` command more often.61If this option is enabled, |XtraDB| uses the ``SYS_STATS`` system table to store statistics of table indexes. Also, when |InnoDB| opens a table for the first time, it loads the statistics from ``SYS_STATS`` instead of sampling index pages. If you use a high ``stats_sample_pages`` value, the first open of a table is expensive. In such a case, this option will help. Note: This option may cause less frequent updating of statistics. So, you should intentionally use the ``ANALYZE TABLE`` command more often.
6262
63(This variable was introduced in release 5.1.50-11.4.)63(This variable was introduced in release 5.1.49-rel11.3)
6464
6565
66INFORMATION_SCHEMA Tables66INFORMATION_SCHEMA Tables
6767
=== modified file 'doc/source/glossary.rst'
--- doc/source/glossary.rst 2012-01-27 11:37:42 +0000
+++ doc/source/glossary.rst 2012-01-31 16:05:29 +0000
@@ -37,6 +37,7 @@
37 * Simple design for ease of use and administration37 * Simple design for ease of use and administration
38 * Reliable, ACID transactional38 * Reliable, ACID transactional
3939
40
40 Durability41 Durability
41 Once a transaction is committed, it will remain so.42 Once a transaction is committed, it will remain so.
4243
@@ -66,6 +67,7 @@
66 * aid developers in ensuring merge requests build and test on all platforms,67 * aid developers in ensuring merge requests build and test on all platforms,
67 * no known performance regressions (without a damn good explanation).68 * no known performance regressions (without a damn good explanation).
6869
70
69 LSN71 LSN
70 Log Serial Number. A term used in relation to the :term:`InnoDB` or72 Log Serial Number. A term used in relation to the :term:`InnoDB` or
71 :term:`XtraDB` storage engines.73 :term:`XtraDB` storage engines.
@@ -108,3 +110,4 @@
108 XtraDB110 XtraDB
109 Percona's improved version of :term:`InnoDB` providing performance,111 Percona's improved version of :term:`InnoDB` providing performance,
110 features and reliability above what is shipped by Oracle in InnoDB.112 features and reliability above what is shipped by Oracle in InnoDB.
113
111114
=== modified file 'doc/source/release-notes/Percona-Server-5.1.57-12.8.rst'
--- doc/source/release-notes/Percona-Server-5.1.57-12.8.rst 2011-09-26 22:00:30 +0000
+++ doc/source/release-notes/Percona-Server-5.1.57-12.8.rst 2012-01-31 16:05:29 +0000
@@ -11,13 +11,17 @@
11Bug Fixes11Bug Fixes
12=========12=========
1313
14 * Fixed |InnoDB| I/O code so that the interrupted system calls are restarted if they are interrupted by a signal. |InnoDB| I/O code was not fully conforming to the standard on POSIX systems, causing a crash with an assertion failure when receiving a signal on ``pwrite()``. Bug Fixed: LP :bug:`764395` / |MySQL| bug `#60788 <http://bugs.mysql.com/bug.php?id=60788>`_ (*A. Kopytov*)14 * Fixed |InnoDB| I/O code so that the interrupted system calls are restarted if they are interrupted by a signal. |InnoDB| I/O code was not fully conforming to the standard on POSIX systems, causing a crash with an assertion failure when receiving a signal on ``pwrite()``. Bug Fixed: LP :bug:`764395` / |MySQL| bug `#60788 <http://bugs.mysql.com/bug.php?id=60788>`_ (*A. Kopytov*).
1515
16 * The maximum value for ``innodb_use_purge_threads`` has been corrected to 32 (maximum number of parallel threads in a parallelized operation). The :ref:`innodb_purge_thread` patch accepted a value up to 64 for the ``innodb_use_purge_thread`` variable, leading to an assertion failure for greater than the actual maximum. Bug Fixed: :bug:`755017` (*L. Biveinis*)16 * The maximum value for ``innodb_use_purge_threads`` has been corrected to 32 (maximum number of parallel threads in a parallelized operation). The :ref:`innodb_purge_thread` patch accepted a value up to 64 for the ``innodb_use_purge_thread`` variable, leading to an assertion failure for greater than the actual maximum. Bug Fixed: :bug:`755017` (*L. Biveinis*).
17
18 * Increased the treshold of 600 seconds during the import, which was causing issues when importing big tables. Bug Fixed :bug:`684829` (*Y. Kinoshita*).
19
20 * The innodb_use_sys_stats_table feature could cause a crash under high concurrency Bug Fixed :bug:`791092` (*Y. Kinoshita*).
1721
18Other Changes22Other Changes
19=============23=============
2024
21 * ``HandlerSocket``, a NoSQL plugin for |MySQL|, has been updated to the latest stable version as April 11th, 2011.25 * ``HandlerSocket``, a NoSQL plugin for |MySQL|, has been updated to the latest stable version as April 11th, 2011.
2226
23 * The list of authors of the plugins used have been corrected. Bug Fixes: :bug:`723050` (*Y. Kinoshita*)27 * The list of authors of the plugins used have been corrected. Bug Fixes: :bug:`723050` (*Y. Kinoshita*).

Subscribers

People subscribed via source and target branches