diff options
author | Brian Evans <grknight@gentoo.org> | 2017-01-27 10:04:23 -0500 |
---|---|---|
committer | Brian Evans <grknight@gentoo.org> | 2017-01-27 10:04:23 -0500 |
commit | b7c7934163c9348fe712a913328dcb5593bc8ac8 (patch) | |
tree | c24681a4eec4de3ec0a0451bca4e2e8d55942908 /dev-db | |
parent | dev-tcltk/mysqltcl: Version bump (diff) | |
download | gentoo-b7c7934163c9348fe712a913328dcb5593bc8ac8.tar.gz gentoo-b7c7934163c9348fe712a913328dcb5593bc8ac8.tar.bz2 gentoo-b7c7934163c9348fe712a913328dcb5593bc8ac8.zip |
dev-db/mytop: Version bump
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'dev-db')
-rw-r--r-- | dev-db/mytop/Manifest | 1 | ||||
-rw-r--r-- | dev-db/mytop/files/mytop-1.9.1-global-status.patch | 94 | ||||
-rw-r--r-- | dev-db/mytop/files/mytop-1.9.1-queries-vs-questions-mysql-5.0.76.patch | 73 | ||||
-rw-r--r-- | dev-db/mytop/mytop-1.9.1.ebuild | 36 |
4 files changed, 204 insertions, 0 deletions
diff --git a/dev-db/mytop/Manifest b/dev-db/mytop/Manifest index 411147ef316a..19af9cfd178d 100644 --- a/dev-db/mytop/Manifest +++ b/dev-db/mytop/Manifest @@ -1 +1,2 @@ DIST mytop-1.6.tar.gz 19720 SHA256 b17c702598b10bb0ce2695f609122637c799eaaaec1afaa73246b048f07be9bd SHA512 672209d828c70fd740a791f2e4dfac1e4c594adff197b8bc43322249f03f6c7b18a750da0892c1519fe29e24b661e41d40cdad3a29b546dec4b3a747155566e2 WHIRLPOOL 4fd03d2e871db6b56db2fa7f39046f415a668c3732f47c0668f73ab7109048a8872cfdc01704ba4152d92500f2ab5c5c66b8d2e948748e43ab56e508980c3b08 +DIST mytop-1.9.1.tar.gz 22095 SHA256 179d79459d0013ab9cea2040a41c49a79822162d6e64a7a85f84cdc44828145e SHA512 e6d38812dd69f5e330e5fe9206abe7e00c9e08dd61ba52a9dbd18a823bb09715832d27fb8db6fe1146d78eb56845cc0a7e2a72989ee56267d6482238fee84bc5 WHIRLPOOL 8d47b1067639f1d5464e63abb0ec10df2e98c17112f4ba6321849cea3a0a932e58e04edef83e358ae1cea01f9338509c40bf1e21ef8d46f4820c9f6b89f25b2e diff --git a/dev-db/mytop/files/mytop-1.9.1-global-status.patch b/dev-db/mytop/files/mytop-1.9.1-global-status.patch new file mode 100644 index 000000000000..ae0163c31af4 --- /dev/null +++ b/dev-db/mytop/files/mytop-1.9.1-global-status.patch @@ -0,0 +1,94 @@ +Use GLOBAL STATUS instead of implicit session status. + +As of MySQL-5.0.72, many of the status variables split for session and global +variants. Importantly, the Com_* and Questions ones did, and this broke the +statistics at the top of mytop. + +Signed-off-by: Robin H. Johnson <robbat2@gentoo.org> +MySQL-Bug: 41131 +MySQL-Bug-URL: http://bugs.mysql.com/bug.php?id=41131 + +diff -Nuar --exclude '*~' mytop-1.6.orig/mytop mytop-1.6/mytop +--- mytop-1.6.orig/mytop 2007-02-16 20:57:46.000000000 -0800 ++++ mytop-1.6/mytop 2008-11-30 15:18:05.818845253 -0800 +@@ -98,7 +98,7 @@ + my %qcache = (); ## The query cache--used for full query info support. + my %ucache = (); ## The user cache--used for full killing by user + my %dbcache = (); ## The db cache. This should be merged at some point. +-my %statcache = (); ## The show status cache for GetShowStatus() ++my %statcache = (); ## The show global status cache for GetShowStatus() + + my (%STATUS, %OLD_STATUS); # header stuff. + +@@ -755,7 +755,7 @@ + + ## Query Cache info + ## +- ## mysql> show status like 'qcache%'; ++ ## mysql> show global status like 'qcache%'; + ## +-------------------------+----------+ + ## | Variable_name | Value | + ## +-------------------------+----------+ +@@ -1064,7 +1064,7 @@ + + sub GetQPS() + { +- my($data) = Hashes('SHOW STATUS LIKE "Questions"'); ++ my($data) = Hashes('SHOW GLOBAL STATUS LIKE "Questions"'); + my $num = $data->{Value}; + + if (not defined $questions) ## first time? +@@ -1126,7 +1126,7 @@ + } + + # Variable_name and Value pairs come back... +- my @data = Hashes("SHOW STATUS LIKE 'Com_%'"); ++ my @data = Hashes("SHOW GLOBAL STATUS LIKE 'Com_%'"); + my %cmd_data; + my %cmd_delta; + my %cmd_pct; +@@ -1216,7 +1216,7 @@ + sub GetShowStatus() + { + Clear() unless $config{batchmode}; +- my @rows = Hashes("SHOW STATUS"); ++ my @rows = Hashes("SHOW GLOBAL STATUS"); + + printf "%32s %10s %10s\n", 'Counter', 'Total', 'Change'; + printf "%32s %10s %10s\n", '-------', '-----', '------'; +@@ -1543,7 +1543,7 @@ + + And you obviously need access to a MySQL server (version 3.22.x or + 3.23.x) with the necessary security to run the I<SHOW PROCESSLIST> and +-I<SHOW STATUS> commands. ++I<SHOW GLOBAL STATUS> commands. + + If you are a Windows user, using ActiveState's Perl, you can use PPM + (the Perl Package Manager) to install the MySQL and Term::ReadKey +@@ -1599,7 +1599,7 @@ + notice features from each of them here. + + B<mytop> will connect to a MySQL server and periodically run the +-I<SHOW PROCESSLIST> and I<SHOW STATUS> commands and attempt to ++I<SHOW PROCESSLIST> and I<SHOW GLOBAL STATUS> commands and attempt to + summarize the information from them in a useful format. + + =head2 The Display +@@ -1817,7 +1817,7 @@ + + =item B<c> + +-Show "command counters" based on the Com_* values in SHOW STATUS. ++Show "command counters" based on the Com_* values in SHOW GLOBAL STATUS. + This is a new feature. Feedback welcome. + + =item B<d> +@@ -1904,7 +1904,7 @@ + + Some performance information is not available when talking to a + version 3.22.x MySQL server. Additional information (about threads +-mostly) was added to the output of I<SHOW STATUS> in MySQL 3.23.x and ++mostly) was added to the output of I<SHOW GLOBAL STATUS> in MySQL 3.23.x and + B<mytop> makes use of it. If the information is not available, you + will simply see zeros where the real numbers should be. + diff --git a/dev-db/mytop/files/mytop-1.9.1-queries-vs-questions-mysql-5.0.76.patch b/dev-db/mytop/files/mytop-1.9.1-queries-vs-questions-mysql-5.0.76.patch new file mode 100644 index 000000000000..0314c8ac82b2 --- /dev/null +++ b/dev-db/mytop/files/mytop-1.9.1-queries-vs-questions-mysql-5.0.76.patch @@ -0,0 +1,73 @@ +In MySQL 5.0.72 the Questions variable was changed to only contain the number +of client-initiated queries, NOT the number of overall queries. This caused +problems with the select/insert/update/delete percentages because Com_* was +still based on the overall queries. + +MySQL 5.0.76 introduced a new variable 'Queries' with the behavior of the old +Questions variable. + +Signed-off-by: Robin H. Johnson <robbat2@gentoo.org> +MySQL-Bug: 41131 +MySQL-Bug-URL: http://bugs.mysql.com/?id=41131 + +==== +Revision 2: +The first revision missed changing the instances of $OLD_STATUS{Questions}. + +diff -Nuar mytop-1.6.orig/mytop mytop-1.6/mytop +--- mytop-1.6.orig/mytop 2009-02-14 17:28:38.696187159 -0800 ++++ mytop-1.6/mytop 2009-02-14 17:36:31.192890507 -0800 +@@ -800,8 +800,15 @@ + + ## Queries per second... + +- my $avg_queries_per_sec = sprintf("%.2f", $STATUS{Questions} / $STATUS{Uptime}); +- my $num_queries = $STATUS{Questions}; ++ my ($num_queries, $old_num_queries); ++ if(defined($STATUS{Queries})) { ++ $num_queries = $STATUS{Queries}; ++ $old_num_queries = $OLD_STATUS{Queries}; ++ } else { ++ $num_queries = $STATUS{Questions}; ++ $old_num_queries = $OLD_STATUS{Questions}; ++ } ++ my $avg_queries_per_sec = sprintf("%.2f", $num_queries / $STATUS{Uptime}); + + my @t = localtime(time); + +@@ -924,26 +924,26 @@ + + + printf " Queries: %-6s qps: %4.0f Slow: %7s Se/In/Up/De(%%): %02.0f/%02.0f/%02.0f/%02.0f \n", +- make_short( $STATUS{Questions} ), # q total +- $STATUS{Questions} / $STATUS{Uptime}, # qps, average ++ make_short( $num_queries ), # q total ++ $num_queries / $STATUS{Uptime}, # qps, average + make_short( $STATUS{Slow_queries} ), # slow + + # hmm. a Qcache hit is really a select and should be counted. +- 100 * ($STATUS{Com_select} + ($STATUS{Qcache_hits}||0) ) / $STATUS{Questions}, +- 100 * ($STATUS{Com_insert} + $STATUS{Com_replace} ) / $STATUS{Questions}, +- 100 * ($STATUS{Com_update} ) / $STATUS{Questions}, +- 100 * $STATUS{Com_delete} / $STATUS{Questions}; ++ 100 * ($STATUS{Com_select} + ($STATUS{Qcache_hits}||0) ) / $num_queries, ++ 100 * ($STATUS{Com_insert} + $STATUS{Com_replace} ) / $num_queries, ++ 100 * ($STATUS{Com_update} ) / $num_queries, ++ 100 * $STATUS{Com_delete} / $num_queries; + + $lines_left--; + + if ($t_delta) + { +- my $q_diff = ( $STATUS{Questions} - $OLD_STATUS{Questions} ); +-# print("q_diff: $STATUS{Questions} - $OLD_STATUS{Questions} / $t_delta = $q_diff\n"); ++ my $q_diff = ( $num_queries - $old_num_queries ); ++# print("q_diff: $num_queries - $old_num_queries / $t_delta = $q_diff\n"); + + printf(" Sorts: %5.0f qps now: %4.0f Slow qps: %3.1f Threads: %4.0f (%4.0f/%4.0f) %02.0f/%02.0f/%02.0f/%02.0f \n", + ( $STATUS{Sort_rows} - $OLD_STATUS{Sort_rows} ) / $t_delta, +- ( $STATUS{Questions} - $OLD_STATUS{Questions} ) / $t_delta, ++ ( $num_queries - $old_num_queries ) / $t_delta, + ( # slow now (qps) + ($STATUS{Slow_queries} ) ? + ( $STATUS{Slow_queries} - $OLD_STATUS{Slow_queries} ) / $t_delta : diff --git a/dev-db/mytop/mytop-1.9.1.ebuild b/dev-db/mytop/mytop-1.9.1.ebuild new file mode 100644 index 000000000000..5294bbfc3434 --- /dev/null +++ b/dev-db/mytop/mytop-1.9.1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit perl-module + +DESCRIPTION="mytop - a top clone for mysql" +HOMEPAGE="http://www.mysqlfanboy.com/mytop-3/" +SRC_URI="http://www.mysqlfanboy.com/mytop-3/${P}.tar.gz" + +LICENSE="GPL-2" +KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86" +SLOT="0" +IUSE="" + +RDEPEND="dev-perl/DBD-mysql + virtual/perl-Getopt-Long + dev-perl/TermReadKey + virtual/perl-Term-ANSIColor + virtual/perl-Time-HiRes" +DEPEND="${RDEPEND} + >=sys-apps/sed-4" + +PATCHES=( "${FILESDIR}/${PN}-1.9.1-global-status.patch" + "${FILESDIR}/${PN}-1.9.1-queries-vs-questions-mysql-5.0.76.patch" + ) +SRC_TEST="do" + +src_install() { + perl-module_src_install + sed -i -r\ + -e "s|socket( +)=> '',|socket\1=> '/var/run/mysqld/mysqld.sock',|g" \ + "${D}"/usr/bin/mytop +} |