Merge lp:~hrvojem/percona-server/bug1229583-5.5 into lp:percona-server/5.5

Proposed by Hrvoje Matijakovic
Status: Merged
Approved by: Laurynas Biveinis
Approved revision: no longer in the source branch.
Merged at revision: 580
Proposed branch: lp:~hrvojem/percona-server/bug1229583-5.5
Merge into: lp:percona-server/5.5
Diff against target: 80 lines (+20/-3)
5 files modified
doc/source/diagnostics/user_stats.rst (+6/-0)
doc/source/faq.rst (+5/-0)
doc/source/release-notes/Percona-Server-5.5.30-30.2.rst (+1/-1)
doc/source/scalability/innodb_io_55.rst (+2/-2)
doc/source/upstream-bug-fixes.rst (+6/-0)
To merge this branch: bzr merge lp:~hrvojem/percona-server/bug1229583-5.5
Reviewer Review Type Date Requested Status
Laurynas Biveinis (community) Approve
Review via email: mp+188389@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Laurynas Biveinis (laurynas-biveinis) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'doc/source/diagnostics/user_stats.rst'
2--- doc/source/diagnostics/user_stats.rst 2013-07-12 08:05:43 +0000
3+++ doc/source/diagnostics/user_stats.rst 2013-09-30 16:52:00 +0000
4@@ -136,6 +136,9 @@
5 | mysql | tables_priv | PRIMARY | 2 |
6 +--------------+-----------------------+--------------------+-----------+
7
8+.. note::
9+
10+ Current implementation of index statistics doesn't support partitioned tables.
11
12
13 .. table:: INFORMATION_SCHEMA.TABLE_STATISTICS
14@@ -158,6 +161,9 @@
15 | mysql | tables_priv | 2 | 0 | 0 |
16 +--------------+-------------------------------+-----------+--------------+------------------------+
17
18+.. note::
19+
20+ Current implementation of table statistics doesn't support partitioned tables.
21
22 .. table:: INFORMATION_SCHEMA.THREAD_STATISTICS
23
24
25=== modified file 'doc/source/faq.rst'
26--- doc/source/faq.rst 2013-05-27 13:46:13 +0000
27+++ doc/source/faq.rst 2013-09-30 16:52:00 +0000
28@@ -18,3 +18,8 @@
29 ===================================================
30
31 A: No, you don't need to change anything on the clients. |Percona Server| is 100% compatible with all existing client libraries and connectors.
32+
33+Q: When using the |Percona XtraBackup| to setup a replication slave on Debian based systems I'm getting: "ERROR 1045 (28000): Access denied for user 'debian-sys-maint'@'localhost' (using password: YES)"
34+==========================================================================================================================================================================================================
35+
36+A: In case you're using init script on Debian based system to start ``mysqld``, be sure that the password for ``debian-sys-maint`` user has been updated and it's the same as that user's password from the server that the backup has been taken from. Password can be seen and updated in :file:`/etc/mysql/debian.cnf`. For more information on how to set up a replication slave using |Percona XtraBackup| see `this how-to <http://www.percona.com/doc/percona-xtrabackup/2.1/howtos/setting_up_replication.html>`_.
37
38=== modified file 'doc/source/release-notes/Percona-Server-5.5.30-30.2.rst'
39--- doc/source/release-notes/Percona-Server-5.5.30-30.2.rst 2013-04-30 09:04:35 +0000
40+++ doc/source/release-notes/Percona-Server-5.5.30-30.2.rst 2013-09-30 16:52:00 +0000
41@@ -75,4 +75,4 @@
42
43 Suboptimal code for :ref:`user_stats` feature has been optimized to make sure no additional work is done when :variable:`userstat` is disabled. Bug fixed :bug:`1128066` (*Alexey Kopytov*).
44
45-Other bug fixes: bug fixed :bug:`1146621` (*Laurynas Biveinis*), bug fixed :bug:`1050536` (*Alexey Bychko*), bug fixed :bug:`1144059` (*Roel Van de Paar*), bug fixed :bug:`1154962` (*Hrvoje Matijakovic*), bug fixed :bug:`1154959` (*Hrvoje Matijakovic*), bug fixed :bug:`1154957` (*Hrvoje Matijakovic*), bug fixed :bug:`1154954` (*Hrvoje Matijakovic*).
46+Other bug fixes: bug fixed :bug:`1103850` (*Laurynas Biveinis*), bug fixed :bug:`1146621` (*Laurynas Biveinis*), bug fixed :bug:`1050536` (*Alexey Bychko*), bug fixed :bug:`1144059` (*Roel Van de Paar*), bug fixed :bug:`1154962` (*Hrvoje Matijakovic*), bug fixed :bug:`1154959` (*Hrvoje Matijakovic*), bug fixed :bug:`1154957` (*Hrvoje Matijakovic*), bug fixed :bug:`1154954` (*Hrvoje Matijakovic*).
47
48=== modified file 'doc/source/scalability/innodb_io_55.rst'
49--- doc/source/scalability/innodb_io_55.rst 2013-07-12 08:05:43 +0000
50+++ doc/source/scalability/innodb_io_55.rst 2013-09-30 16:52:00 +0000
51@@ -117,10 +117,10 @@
52 use O_SYNC to open and flush the log files; use fsync() to flush the data files.
53
54 * ``O_DIRECT``:
55- use O_DIRECT (or directio() on Solaris) to open the data files; use fsync() to flush both the data and log files.
56+ use O_DIRECT to open the data files and fsync() system call to flush both the data and log files.
57
58 * ``ALL_O_DIRECT``:
59- use O_DIRECT open and flush both the data and the log files. This option is recommended when |InnoDB| log files are big (more than 8GB), otherwise there might be even a performance degradation. **Note**: When using this option on *ext4* filesystem variable :variable:`innodb_log_block_size` should be set to 4096 (default log-block-size in *ext4*) in order to avoid the ``unaligned AIO/DIO`` warnings.
60+ use O_DIRECT to open both data and log files, and use fsync() to flush the data files but it is skipped for all log files writes. This option is recommended when |InnoDB| log files are big (more than 8GB), otherwise there might be even a performance degradation. **Note**: When using this option on *ext4* filesystem variable :variable:`innodb_log_block_size` should be set to 4096 (default log-block-size in *ext4*) in order to avoid the ``unaligned AIO/DIO`` warnings.
61
62 .. variable:: innodb_flush_neighbor_pages
63
64
65=== modified file 'doc/source/upstream-bug-fixes.rst'
66--- doc/source/upstream-bug-fixes.rst 2013-08-27 07:36:35 +0000
67+++ doc/source/upstream-bug-fixes.rst 2013-09-30 16:52:00 +0000
68@@ -119,6 +119,12 @@
69 |:Fix Released: :rn:`5.5.29-29.4` |
70 |:Upstream fix: N/A |
71 +-------------------------------------------------------------------------------------------------------------+
72+|:Upstream bug: :mysqlbug:`70277` - last argument of LOAD DATA ... SET ... statement repeated twice in binlog |
73+|:Launchpad bug: :bug:`1223196` |
74+|:Upstream state: Verified (checked on 2013-09-30) |
75+|:Fix Released: :rn:`5.5.28-29.3` |
76+|:Upstream fix: N/A |
77++-------------------------------------------------------------------------------------------------------------+
78 |:Upstream bug: :mysqlbug:`69380` - Incomplete fix for security vulnerability CVE-2012-5611 |
79 |:Launchpad bug: :bug:`1186748` |
80 |:Upstream state: N/A |

Subscribers

People subscribed via source and target branches