~percona-toolkit-dev/percona-toolkit/release-2.2.3

« back to all changes in this revision

Viewing changes to docs/release_notes.rst

  • Committer: Brian Fraser
  • Date: 2013-04-25 17:34:17 UTC
  • mfrom: (580.1.6 release-2.2.2)
  • Revision ID: brian.fraser@percona.com-20130425173417-ttqmxtw59h3dtt0r
Tags: 2.2.2
MergedĀ lp:~percona-toolkit-dev/percona-toolkit/release-2.2.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
Release Notes
2
2
*************
3
3
 
 
4
v2.2.2 released 2013-04-24
 
5
==========================
 
6
 
 
7
Percona Toolkit 2.2.2 has been released.  This is the second release of
 
8
the 2.2 series and aims to fix bugs in the previous release and provide
 
9
usability enhacements to the toolkit.
 
10
 
 
11
Users may note the revival of the --show-all option in pt-query-digest.
 
12
This had been removed in 2.2.1, but resulted in too much output in
 
13
certain cases.
 
14
 
 
15
A new --recursion-method was added to pt-table-checksum: cluster.  This
 
16
method attempts to auto-discover cluster nodes, alleviating the need to
 
17
specify cluster node DSNs in a DSN table (--recursion-method=dsn).
 
18
 
 
19
The following highlights some of the more interesting and "hot" bugs in
 
20
this release:
 
21
 
 
22
* Bug #1127450: pt-archiver --bulk-insert may corrupt data
 
23
 
 
24
pt-archiver --bulk-insert didn't work with --charset UTF-8. This revealed
 
25
a case where the tool could corrupt data by double-encoding.  This is now
 
26
fixed, but remains relatively dangerous if using DBD::mysql 3.0007 which
 
27
does not handle UTF-8 properly.
 
28
 
 
29
* Bug #1163372: pt-heartbeat --utc --check always returns 0
 
30
 
 
31
Unfortunately, the relatively new --utc option for pt-heart was still
 
32
broken because "[MySQL] interprets date as a value in the current time zone
 
33
and converts it to an internal value in UTC."  Now the tool works correctly
 
34
with --utc by specifying "SET time_zone='+0:00'", and older versions of
 
35
the tool can be made to work by specifying --set-vars "time_zone='+0:00'".
 
36
 
 
37
* Bug #821502: Some tools don't have --help or --version
 
38
 
 
39
pt-align, pt-mext, pt-pmp and pt-sift now have both options.
 
40
 
 
41
This is another solid bug fix release, and all users are encouraged to upgrade.
 
42
 
 
43
Percona Toolkit packages can be downloaded from
 
44
http://www.percona.com/downloads/percona-toolkit/ or the Percona Software
 
45
Repositories (http://www.percona.com/software/repositories/).
 
46
 
 
47
Changelog
 
48
---------
 
49
 
 
50
* Added --show-all to pt-query-digest
 
51
* Added --recursion-method=cluster to pt-table-checksum
 
52
* Fixed bug 1127450: pt-archiver --bulk-insert may corrupt data
 
53
* Fixed bug 1163372: pt-heartbeat --utc --check always returns 0
 
54
* Fixed bug 1156901: pt-query-digest --processlist reports duplicate queries for replication thread
 
55
* Fixed bug 1160338: pt-query-digest 2.2 prints unwanted debug info on tcpdump parsing errors
 
56
* Fixed bug 1160918: pt-query-digest 2.2 prints too many string values
 
57
* Fixed bug 1156867: pt-stalk prints the wrong variable name in verbose mode when --function is used
 
58
* Fixed bug 1081733: pt-stalk plugins can't access the real --prefix
 
59
* Fixed bug 1099845: pt-table-checksum pxc same_node function incorrectly uses wsrep_sst_receive_address
 
60
* Fixed bug  821502: Some tools don't have --help or --version
 
61
* Fixed bug  947893: Some tools use @@hostname without /*!50038*/
 
62
* Fixed bug 1082406: An explicitly set wsrep_node_incoming_address may make SHOW STATUS LIKE 'wsrep_incoming_addresses' return a portless address
 
63
 
4
64
v2.2.1 released 2013-03-14
5
65
==========================
6
66