mirror of
https://github.com/percona/percona-toolkit.git
synced 2025-09-08 11:07:58 +00:00
Merge fix-log-parser-writer-bug-963225.
This commit is contained in:
@@ -4725,9 +4725,9 @@ sub write {
|
||||
|
||||
if ( $percona_patched ) {
|
||||
printf $fh
|
||||
"# QC_Hit: %s Full_scan: %s Full_join: %s Tmp_table: %s Disk_tmp_table: %s\n# Filesort: %s Disk_filesort: %s Merge_passes: %d\n",
|
||||
"# QC_Hit: %s Full_scan: %s Full_join: %s Tmp_table: %s Tmp_table_on_disk: %s\n# Filesort: %s Filesort_on_disk: %s Merge_passes: %d\n",
|
||||
map { $_ || 0 }
|
||||
@{$event}{qw(QC_Hit Full_scan Full_join Tmp_table Disk_tmp_table Filesort Disk_filesort Merge_passes)};
|
||||
@{$event}{qw(QC_Hit Full_scan Full_join Tmp_table Tmp_table_on_disk Filesort Filesort_on_disk Merge_passes)};
|
||||
|
||||
if ( exists $event->{InnoDB_IO_r_ops} ) {
|
||||
printf $fh
|
||||
@@ -15059,12 +15059,12 @@ table definition is used for L<"--create-review-history-table">:
|
||||
Full_join_sum FLOAT,
|
||||
Tmp_table_cnt FLOAT,
|
||||
Tmp_table_sum FLOAT,
|
||||
Disk_tmp_table_cnt FLOAT,
|
||||
Disk_tmp_table_sum FLOAT,
|
||||
Filesort_cnt FLOAT,
|
||||
Filesort_sum FLOAT,
|
||||
Disk_filesort_cnt FLOAT,
|
||||
Disk_filesort_sum FLOAT,
|
||||
Tmp_table_on_disk_cnt FLOAT,
|
||||
Tmp_table_on_disk_sum FLOAT,
|
||||
Filesort_cnt FLOAT,
|
||||
Filesort_sum FLOAT,
|
||||
Filesort_on_disk_cnt FLOAT,
|
||||
Filesort_on_disk_sum FLOAT,
|
||||
PRIMARY KEY(checksum, ts_min, ts_max)
|
||||
);
|
||||
|
||||
|
@@ -193,7 +193,7 @@ sub name {
|
||||
|
||||
sub DESTROY {
|
||||
my ($self) = @_;
|
||||
if ( $self->{dbh} ) {
|
||||
if ( $self->{dbh} && ref($self->{dbh}) ) {
|
||||
PTDEBUG && _d('Disconnecting dbh', $self->{dbh}, $self->{name});
|
||||
$self->{dbh}->disconnect();
|
||||
}
|
||||
|
@@ -189,7 +189,7 @@ sub get_rules {
|
||||
foreach my $pred ( @$where ) {
|
||||
my $val = $pred->{right_arg};
|
||||
next unless $val;
|
||||
return 0 if $val =~ m/^\d+$/ && $orderby_col{lc $pred->{left_arg}};
|
||||
return 0 if $val =~ m/^\d+$/ && $orderby_col{lc($pred->{left_arg} || '')};
|
||||
}
|
||||
return;
|
||||
},
|
||||
|
@@ -152,9 +152,9 @@ sub find_column {
|
||||
($col, $tbl, $db) = @args{qw(col tbl db)};
|
||||
}
|
||||
|
||||
$db = lc $db;
|
||||
$tbl = lc $tbl;
|
||||
$col = lc $col;
|
||||
$db = lc($db || '');
|
||||
$tbl = lc($tbl || '');
|
||||
$col = lc($col || '');
|
||||
|
||||
if ( !$col ) {
|
||||
PTDEBUG && _d('No column specified or parsed');
|
||||
@@ -214,8 +214,8 @@ sub find_table {
|
||||
($tbl, $db) = @args{qw(tbl db)};
|
||||
}
|
||||
|
||||
$db = lc $db;
|
||||
$tbl = lc $tbl;
|
||||
$db = lc($db || '');
|
||||
$tbl = lc($tbl || '');
|
||||
|
||||
if ( !$tbl ) {
|
||||
PTDEBUG && _d('No table specified or parsed');
|
||||
|
@@ -62,9 +62,9 @@ sub write {
|
||||
if ( $percona_patched ) {
|
||||
# First 2 lines of Percona-patched attribs.
|
||||
printf $fh
|
||||
"# QC_Hit: %s Full_scan: %s Full_join: %s Tmp_table: %s Disk_tmp_table: %s\n# Filesort: %s Disk_filesort: %s Merge_passes: %d\n",
|
||||
"# QC_Hit: %s Full_scan: %s Full_join: %s Tmp_table: %s Tmp_table_on_disk: %s\n# Filesort: %s Filesort_on_disk: %s Merge_passes: %d\n",
|
||||
map { $_ || 0 }
|
||||
@{$event}{qw(QC_Hit Full_scan Full_join Tmp_table Disk_tmp_table Filesort Disk_filesort Merge_passes)};
|
||||
@{$event}{qw(QC_Hit Full_scan Full_join Tmp_table Tmp_table_on_disk Filesort Filesort_on_disk Merge_passes)};
|
||||
|
||||
if ( exists $event->{InnoDB_IO_r_ops} ) {
|
||||
# Optional 3 lines of Percona-patched InnoDB attribs.
|
||||
|
@@ -60,7 +60,7 @@ test_log_parser(
|
||||
result => [
|
||||
{ arg => 'BEGIN',
|
||||
ts => '071218 11:48:27',
|
||||
Disk_filesort => 'No',
|
||||
Filesort_on_disk => 'No',
|
||||
Merge_passes => '0',
|
||||
Full_scan => 'No',
|
||||
Full_join => 'No',
|
||||
@@ -70,7 +70,7 @@ test_log_parser(
|
||||
Rows_examined => '0',
|
||||
Filesort => 'No',
|
||||
Query_time => '0.000012',
|
||||
Disk_tmp_table => 'No',
|
||||
Tmp_table_on_disk => 'No',
|
||||
Rows_sent => '0',
|
||||
Lock_time => '0.000000',
|
||||
pos_in_log => 0,
|
||||
@@ -85,7 +85,7 @@ test_log_parser(
|
||||
arg => 'update db2.tuningdetail_21_265507 n
|
||||
inner join db1.gonzo a using(gonzo)
|
||||
set n.column1 = a.column1, n.word3 = a.word3',
|
||||
Disk_filesort => 'No',
|
||||
Filesort_on_disk => 'No',
|
||||
Merge_passes => '0',
|
||||
Full_scan => 'Yes',
|
||||
Full_join => 'No',
|
||||
@@ -95,10 +95,10 @@ test_log_parser(
|
||||
Rows_examined => '62951',
|
||||
Filesort => 'No',
|
||||
Query_time => '0.726052',
|
||||
Disk_tmp_table => 'No',
|
||||
Tmp_table_on_disk => 'No',
|
||||
Rows_sent => '0',
|
||||
Lock_time => '0.000091',
|
||||
pos_in_log => 332,
|
||||
pos_in_log => 338,
|
||||
cmd => 'Query',
|
||||
user => '[SQL_SLAVE]',
|
||||
host => '',
|
||||
@@ -118,16 +118,16 @@ VALUES (\'\', \'Exact\')',
|
||||
Lock_time => '0.000077',
|
||||
InnoDB_rec_lock_wait => '0.000000',
|
||||
Full_scan => 'No',
|
||||
Disk_filesort => 'No',
|
||||
Filesort_on_disk => 'No',
|
||||
Thread_id => '10',
|
||||
Tmp_table => 'No',
|
||||
QC_Hit => 'No',
|
||||
Rows_examined => '0',
|
||||
InnoDB_IO_r_ops => '0',
|
||||
Disk_tmp_table => 'No',
|
||||
Tmp_table_on_disk => 'No',
|
||||
Query_time => '0.000512',
|
||||
InnoDB_IO_r_wait => '0.000000',
|
||||
pos_in_log => 803,
|
||||
pos_in_log => 815,
|
||||
cmd => 'Query',
|
||||
user => '[SQL_SLAVE]',
|
||||
host => '',
|
||||
@@ -147,16 +147,16 @@ WHERE vab3concept1upload=\'6994465\'',
|
||||
Lock_time => '0.000028',
|
||||
InnoDB_rec_lock_wait => '0.000000',
|
||||
Full_scan => 'No',
|
||||
Disk_filesort => 'No',
|
||||
Filesort_on_disk => 'No',
|
||||
Thread_id => '10',
|
||||
Tmp_table => 'No',
|
||||
QC_Hit => 'No',
|
||||
Rows_examined => '0',
|
||||
InnoDB_IO_r_ops => '0',
|
||||
Disk_tmp_table => 'No',
|
||||
Tmp_table_on_disk => 'No',
|
||||
Query_time => '0.033384',
|
||||
InnoDB_IO_r_wait => '0.000000',
|
||||
pos_in_log => 1316,
|
||||
pos_in_log => 1334,
|
||||
cmd => 'Query',
|
||||
user => '[SQL_SLAVE]',
|
||||
host => '',
|
||||
@@ -177,16 +177,16 @@ VALUES (\'211\', \'18\')',
|
||||
Lock_time => '0.000027',
|
||||
InnoDB_rec_lock_wait => '0.000000',
|
||||
Full_scan => 'No',
|
||||
Disk_filesort => 'No',
|
||||
Filesort_on_disk => 'No',
|
||||
Thread_id => '10',
|
||||
Tmp_table => 'No',
|
||||
QC_Hit => 'No',
|
||||
Rows_examined => '0',
|
||||
InnoDB_IO_r_ops => '0',
|
||||
Disk_tmp_table => 'No',
|
||||
Tmp_table_on_disk => 'No',
|
||||
Query_time => '0.000530',
|
||||
InnoDB_IO_r_wait => '0.000000',
|
||||
pos_in_log => 1840,
|
||||
pos_in_log => 1864,
|
||||
cmd => 'Query',
|
||||
user => '[SQL_SLAVE]',
|
||||
host => '',
|
||||
@@ -205,16 +205,16 @@ SET biz = \'91848182522\'',
|
||||
Lock_time => '0.000027',
|
||||
InnoDB_rec_lock_wait => '0.000000',
|
||||
Full_scan => 'No',
|
||||
Disk_filesort => 'No',
|
||||
Filesort_on_disk => 'No',
|
||||
Thread_id => '10',
|
||||
Tmp_table => 'No',
|
||||
QC_Hit => 'No',
|
||||
Rows_examined => '0',
|
||||
InnoDB_IO_r_ops => '0',
|
||||
Disk_tmp_table => 'No',
|
||||
Tmp_table_on_disk => 'No',
|
||||
Query_time => '0.000530',
|
||||
InnoDB_IO_r_wait => '0.000000',
|
||||
pos_in_log => 2363,
|
||||
pos_in_log => 2393,
|
||||
cmd => 'Query',
|
||||
user => '[SQL_SLAVE]',
|
||||
host => '',
|
||||
@@ -235,16 +235,16 @@ WHERE fillze=\'899\'',
|
||||
Lock_time => '0.000027',
|
||||
InnoDB_rec_lock_wait => '0.000000',
|
||||
Full_scan => 'No',
|
||||
Disk_filesort => 'No',
|
||||
Filesort_on_disk => 'No',
|
||||
Thread_id => '10',
|
||||
Tmp_table => 'No',
|
||||
QC_Hit => 'No',
|
||||
Rows_examined => '0',
|
||||
InnoDB_IO_r_ops => '0',
|
||||
Disk_tmp_table => 'No',
|
||||
Tmp_table_on_disk => 'No',
|
||||
Query_time => '0.000530',
|
||||
InnoDB_IO_r_wait => '0.000000',
|
||||
pos_in_log => 2825,
|
||||
pos_in_log => 2861,
|
||||
cmd => 'Query',
|
||||
user => '[SQL_SLAVE]',
|
||||
host => '',
|
||||
@@ -263,16 +263,16 @@ SET biz = \'91848182522\'',
|
||||
Lock_time => '0.000027',
|
||||
InnoDB_rec_lock_wait => '0.000000',
|
||||
Full_scan => 'No',
|
||||
Disk_filesort => 'No',
|
||||
Filesort_on_disk => 'No',
|
||||
Thread_id => '10',
|
||||
Tmp_table => 'No',
|
||||
QC_Hit => 'No',
|
||||
Rows_examined => '0',
|
||||
InnoDB_IO_r_ops => '0',
|
||||
Disk_tmp_table => 'No',
|
||||
Tmp_table_on_disk => 'No',
|
||||
Query_time => '0.000530',
|
||||
InnoDB_IO_r_wait => '0.000000',
|
||||
pos_in_log => 3332,
|
||||
pos_in_log => 3374,
|
||||
cmd => 'Query',
|
||||
user => '[SQL_SLAVE]',
|
||||
host => '',
|
||||
@@ -322,8 +322,8 @@ test_log_parser(
|
||||
parser => $p,
|
||||
file => "$sample/slow003.txt",
|
||||
result => [
|
||||
{ Disk_filesort => 'No',
|
||||
Disk_tmp_table => 'No',
|
||||
{ Filesort_on_disk => 'No',
|
||||
Tmp_table_on_disk => 'No',
|
||||
Filesort => 'No',
|
||||
Full_join => 'No',
|
||||
Full_scan => 'No',
|
||||
@@ -374,7 +374,7 @@ test_log_parser(
|
||||
result => [
|
||||
{ arg => "foo\nbar\n\t\t\t0 AS counter\nbaz",
|
||||
ts => '071218 11:48:27',
|
||||
Disk_filesort => 'No',
|
||||
Filesort_on_disk => 'No',
|
||||
Merge_passes => '0',
|
||||
Full_scan => 'No',
|
||||
Full_join => 'No',
|
||||
@@ -384,7 +384,7 @@ test_log_parser(
|
||||
Rows_examined => '0',
|
||||
Filesort => 'No',
|
||||
Query_time => '0.000012',
|
||||
Disk_tmp_table => 'No',
|
||||
Tmp_table_on_disk => 'No',
|
||||
Rows_sent => '0',
|
||||
Lock_time => '0.000000',
|
||||
pos_in_log => 0,
|
||||
@@ -402,8 +402,8 @@ test_log_parser(
|
||||
parser => $p,
|
||||
file => "$sample/slow006.txt",
|
||||
result => [
|
||||
{ Disk_filesort => 'No',
|
||||
Disk_tmp_table => 'No',
|
||||
{ Filesort_on_disk => 'No',
|
||||
Tmp_table_on_disk => 'No',
|
||||
Filesort => 'No',
|
||||
Full_join => 'No',
|
||||
Full_scan => 'No',
|
||||
@@ -425,8 +425,8 @@ test_log_parser(
|
||||
user => '[SQL_SLAVE]',
|
||||
bytes => 23,
|
||||
},
|
||||
{ Disk_filesort => 'No',
|
||||
Disk_tmp_table => 'No',
|
||||
{ Filesort_on_disk => 'No',
|
||||
Tmp_table_on_disk => 'No',
|
||||
Filesort => 'No',
|
||||
Full_join => 'No',
|
||||
Full_scan => 'No',
|
||||
@@ -443,13 +443,13 @@ test_log_parser(
|
||||
cmd => 'Query',
|
||||
host => '',
|
||||
ip => '',
|
||||
pos_in_log => '363',
|
||||
pos_in_log => '369',
|
||||
ts => '071218 11:48:57',
|
||||
user => '[SQL_SLAVE]',
|
||||
bytes => 23,
|
||||
},
|
||||
{ Disk_filesort => 'No',
|
||||
Disk_tmp_table => 'No',
|
||||
{ Filesort_on_disk => 'No',
|
||||
Tmp_table_on_disk => 'No',
|
||||
Filesort => 'No',
|
||||
Full_join => 'No',
|
||||
Full_scan => 'No',
|
||||
@@ -466,13 +466,13 @@ test_log_parser(
|
||||
db => 'bar',
|
||||
host => '',
|
||||
ip => '',
|
||||
pos_in_log => '725',
|
||||
pos_in_log => '737',
|
||||
ts => '071218 11:48:57',
|
||||
user => '[SQL_SLAVE]',
|
||||
bytes => 23,
|
||||
},
|
||||
{ Disk_filesort => 'No',
|
||||
Disk_tmp_table => 'No',
|
||||
{ Filesort_on_disk => 'No',
|
||||
Tmp_table_on_disk => 'No',
|
||||
Filesort => 'No',
|
||||
Full_join => 'No',
|
||||
Full_scan => 'No',
|
||||
@@ -489,13 +489,13 @@ test_log_parser(
|
||||
cmd => 'Query',
|
||||
host => '',
|
||||
ip => '',
|
||||
pos_in_log => '1083',
|
||||
pos_in_log => '1101',
|
||||
ts => '071218 11:49:05',
|
||||
user => '[SQL_SLAVE]',
|
||||
bytes => 23,
|
||||
},
|
||||
{ Disk_filesort => 'No',
|
||||
Disk_tmp_table => 'No',
|
||||
{ Filesort_on_disk => 'No',
|
||||
Tmp_table_on_disk => 'No',
|
||||
Filesort => 'No',
|
||||
Full_join => 'No',
|
||||
Full_scan => 'No',
|
||||
@@ -512,13 +512,13 @@ test_log_parser(
|
||||
db => 'bar',
|
||||
host => '',
|
||||
ip => '',
|
||||
pos_in_log => '1445',
|
||||
pos_in_log => '1469',
|
||||
ts => '071218 11:49:07',
|
||||
user => '[SQL_SLAVE]',
|
||||
bytes => 23,
|
||||
},
|
||||
{ Disk_filesort => 'No',
|
||||
Disk_tmp_table => 'No',
|
||||
{ Filesort_on_disk => 'No',
|
||||
Tmp_table_on_disk => 'No',
|
||||
Filesort => 'No',
|
||||
Full_join => 'No',
|
||||
Full_scan => 'No',
|
||||
@@ -535,7 +535,7 @@ test_log_parser(
|
||||
cmd => 'Query',
|
||||
host => '',
|
||||
ip => '',
|
||||
pos_in_log => '1803',
|
||||
pos_in_log => '1833',
|
||||
ts => '071218 11:49:30',
|
||||
user => '[SQL_SLAVE]',
|
||||
bytes => 23,
|
||||
@@ -551,7 +551,7 @@ test_log_parser(
|
||||
{ Schema => 'food',
|
||||
arg => 'SELECT fruit FROM trees',
|
||||
ts => '071218 11:48:27',
|
||||
Disk_filesort => 'No',
|
||||
Filesort_on_disk => 'No',
|
||||
Merge_passes => '0',
|
||||
Full_scan => 'No',
|
||||
Full_join => 'No',
|
||||
@@ -561,7 +561,7 @@ test_log_parser(
|
||||
Rows_examined => '0',
|
||||
Filesort => 'No',
|
||||
Query_time => '0.000012',
|
||||
Disk_tmp_table => 'No',
|
||||
Tmp_table_on_disk => 'No',
|
||||
Rows_sent => '0',
|
||||
Lock_time => '0.000000',
|
||||
pos_in_log => 0,
|
||||
@@ -1035,8 +1035,8 @@ test_log_parser(
|
||||
parser => $p,
|
||||
file => "$sample/slow022.txt",
|
||||
result => [
|
||||
{ Disk_filesort => 'No',
|
||||
Disk_tmp_table => 'No',
|
||||
{ Filesort_on_disk => 'No',
|
||||
Tmp_table_on_disk => 'No',
|
||||
Filesort => 'No',
|
||||
Full_join => 'No',
|
||||
Full_scan => 'No',
|
||||
@@ -1057,8 +1057,8 @@ test_log_parser(
|
||||
user => '[SQL_SLAVE]',
|
||||
bytes => 23,
|
||||
},
|
||||
{ Disk_filesort => 'No',
|
||||
Disk_tmp_table => 'No',
|
||||
{ Filesort_on_disk => 'No',
|
||||
Tmp_table_on_disk => 'No',
|
||||
Filesort => 'No',
|
||||
Full_join => 'No',
|
||||
Full_scan => 'No',
|
||||
@@ -1075,12 +1075,12 @@ test_log_parser(
|
||||
cmd => 'Query',
|
||||
host => '',
|
||||
ip => '',
|
||||
pos_in_log => '363',
|
||||
pos_in_log => '369',
|
||||
user => '[SQL_SLAVE]',
|
||||
bytes => 23,
|
||||
},
|
||||
{ Disk_filesort => 'No',
|
||||
Disk_tmp_table => 'No',
|
||||
{ Filesort_on_disk => 'No',
|
||||
Tmp_table_on_disk => 'No',
|
||||
Filesort => 'No',
|
||||
Full_join => 'No',
|
||||
Full_scan => 'No',
|
||||
@@ -1097,12 +1097,12 @@ test_log_parser(
|
||||
db => 'bar',
|
||||
host => '',
|
||||
ip => '',
|
||||
pos_in_log => '725',
|
||||
pos_in_log => '737',
|
||||
user => '[SQL_SLAVE]',
|
||||
bytes => 23,
|
||||
},
|
||||
{ Disk_filesort => 'No',
|
||||
Disk_tmp_table => 'No',
|
||||
{ Filesort_on_disk => 'No',
|
||||
Tmp_table_on_disk => 'No',
|
||||
Filesort => 'No',
|
||||
Full_join => 'No',
|
||||
Full_scan => 'No',
|
||||
@@ -1119,12 +1119,12 @@ test_log_parser(
|
||||
cmd => 'Query',
|
||||
host => '',
|
||||
ip => '',
|
||||
pos_in_log => '1083',
|
||||
pos_in_log => '1101',
|
||||
user => '[SQL_SLAVE]',
|
||||
bytes => 23,
|
||||
},
|
||||
{ Disk_filesort => 'No',
|
||||
Disk_tmp_table => 'No',
|
||||
{ Filesort_on_disk => 'No',
|
||||
Tmp_table_on_disk => 'No',
|
||||
Filesort => 'No',
|
||||
Full_join => 'No',
|
||||
Full_scan => 'No',
|
||||
@@ -1141,12 +1141,12 @@ test_log_parser(
|
||||
db => 'bar',
|
||||
host => '',
|
||||
ip => '',
|
||||
pos_in_log => '1445',
|
||||
pos_in_log => '1469',
|
||||
user => '[SQL_SLAVE]',
|
||||
bytes => 23,
|
||||
},
|
||||
{ Disk_filesort => 'No',
|
||||
Disk_tmp_table => 'No',
|
||||
{ Filesort_on_disk => 'No',
|
||||
Tmp_table_on_disk => 'No',
|
||||
Filesort => 'No',
|
||||
Full_join => 'No',
|
||||
Full_scan => 'No',
|
||||
@@ -1163,7 +1163,7 @@ test_log_parser(
|
||||
cmd => 'Query',
|
||||
host => '',
|
||||
ip => '',
|
||||
pos_in_log => '1803',
|
||||
pos_in_log => '1833',
|
||||
user => '[SQL_SLAVE]',
|
||||
bytes => 23,
|
||||
},
|
||||
|
@@ -1,15 +1,15 @@
|
||||
# Time: 071218 11:48:27 # User@Host: [SQL_SLAVE] @ []
|
||||
# Thread_id: 10
|
||||
# Query_time: 0.000012 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# No InnoDB statistics available for this query
|
||||
BEGIN;
|
||||
# User@Host: [SQL_SLAVE] @ []
|
||||
# Thread_id: 10
|
||||
# Query_time: 0.726052 Lock_time: 0.000091 Rows_sent: 0 Rows_examined: 62951
|
||||
# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# No InnoDB statistics available for this query
|
||||
use db1;
|
||||
SET timestamp=1197996507;
|
||||
@@ -19,8 +19,8 @@ update db2.tuningdetail_21_265507 n
|
||||
# User@Host: [SQL_SLAVE] @ []
|
||||
# Thread_id: 10
|
||||
# Query_time: 0.000512 Lock_time: 0.000077 Rows_sent: 0 Rows_examined: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# InnoDB_IO_r_ops: 0 InnoDB_IO_r_bytes: 0 InnoDB_IO_r_wait: 0.000000
|
||||
# InnoDB_rec_lock_wait: 0.000000 InnoDB_queue_wait: 0.000000
|
||||
# InnoDB_pages_distinct: 24
|
||||
@@ -30,8 +30,8 @@ VALUES ('', 'Exact');
|
||||
# User@Host: [SQL_SLAVE] @ []
|
||||
# Thread_id: 10
|
||||
# Query_time: 0.033384 Lock_time: 0.000028 Rows_sent: 0 Rows_examined: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# InnoDB_IO_r_ops: 0 InnoDB_IO_r_bytes: 0 InnoDB_IO_r_wait: 0.000000
|
||||
# InnoDB_rec_lock_wait: 0.000000 InnoDB_queue_wait: 0.000000
|
||||
# InnoDB_pages_distinct: 11
|
||||
@@ -41,8 +41,8 @@ WHERE vab3concept1upload='6994465';
|
||||
# User@Host: [SQL_SLAVE] @ []
|
||||
# Thread_id: 10
|
||||
# Query_time: 0.000530 Lock_time: 0.000027 Rows_sent: 0 Rows_examined: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# InnoDB_IO_r_ops: 0 InnoDB_IO_r_bytes: 0 InnoDB_IO_r_wait: 0.000000
|
||||
# InnoDB_rec_lock_wait: 0.000000 InnoDB_queue_wait: 0.000000
|
||||
# InnoDB_pages_distinct: 18
|
||||
@@ -52,8 +52,8 @@ VALUES ('211', '18');
|
||||
# User@Host: [SQL_SLAVE] @ []
|
||||
# Thread_id: 10
|
||||
# Query_time: 0.000530 Lock_time: 0.000027 Rows_sent: 0 Rows_examined: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# InnoDB_IO_r_ops: 0 InnoDB_IO_r_bytes: 0 InnoDB_IO_r_wait: 0.000000
|
||||
# InnoDB_rec_lock_wait: 0.000000 InnoDB_queue_wait: 0.000000
|
||||
# InnoDB_pages_distinct: 18
|
||||
@@ -62,8 +62,8 @@ SET biz = '91848182522';
|
||||
# User@Host: [SQL_SLAVE] @ []
|
||||
# Thread_id: 10
|
||||
# Query_time: 0.000530 Lock_time: 0.000027 Rows_sent: 0 Rows_examined: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# InnoDB_IO_r_ops: 0 InnoDB_IO_r_bytes: 0 InnoDB_IO_r_wait: 0.000000
|
||||
# InnoDB_rec_lock_wait: 0.000000 InnoDB_queue_wait: 0.000000
|
||||
# InnoDB_pages_distinct: 18
|
||||
@@ -74,8 +74,8 @@ WHERE fillze='899';
|
||||
# User@Host: [SQL_SLAVE] @ []
|
||||
# Thread_id: 10
|
||||
# Query_time: 0.000530 Lock_time: 0.000027 Rows_sent: 0 Rows_examined: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# InnoDB_IO_r_ops: 0 InnoDB_IO_r_bytes: 0 InnoDB_IO_r_wait: 0.000000
|
||||
# InnoDB_rec_lock_wait: 0.000000 InnoDB_queue_wait: 0.000000
|
||||
# InnoDB_pages_distinct: 18
|
||||
|
@@ -2,7 +2,7 @@
|
||||
# Time: 071218 11:48:27 # User@Host: [SQL_SLAVE] @ []
|
||||
# Thread_id: 10
|
||||
# Query_time: 0.000012 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# No InnoDB statistics available for this query
|
||||
BEGIN;
|
||||
|
@@ -1,8 +1,8 @@
|
||||
# Time: 071218 11:48:27 # User@Host: [SQL_SLAVE] @ []
|
||||
# Thread_id: 10
|
||||
# Query_time: 0.000012 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# No InnoDB statistics available for this query
|
||||
foo
|
||||
bar
|
||||
|
@@ -1,44 +1,44 @@
|
||||
# Time: 071218 11:48:27 # User@Host: [SQL_SLAVE] @ []
|
||||
# Thread_id: 10 Schema: foo
|
||||
# Query_time: 0.000012 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# No InnoDB statistics available for this query
|
||||
SELECT col FROM foo_tbl;
|
||||
# Time: 071218 11:48:57 # User@Host: [SQL_SLAVE] @ []
|
||||
# Thread_id: 10 Schema: foo
|
||||
# Query_time: 0.000012 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# No InnoDB statistics available for this query
|
||||
SELECT col FROM foo_tbl;
|
||||
# Time: 071218 11:48:57 # User@Host: [SQL_SLAVE] @ []
|
||||
# Thread_id: 20
|
||||
# Query_time: 0.000012 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# No InnoDB statistics available for this query
|
||||
use bar;
|
||||
SELECT col FROM bar_tbl;
|
||||
# Time: 071218 11:49:05 # User@Host: [SQL_SLAVE] @ []
|
||||
# Thread_id: 10 Schema: bar
|
||||
# Query_time: 0.000012 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# No InnoDB statistics available for this query
|
||||
SELECT col FROM bar_tbl;
|
||||
# Time: 071218 11:49:07 # User@Host: [SQL_SLAVE] @ []
|
||||
# Thread_id: 20
|
||||
# Query_time: 0.000012 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# No InnoDB statistics available for this query
|
||||
use bar;
|
||||
SELECT col FROM bar_tbl;
|
||||
# Time: 071218 11:49:30 # User@Host: [SQL_SLAVE] @ []
|
||||
# Thread_id: 30 Schema: foo
|
||||
# Query_time: 0.000012 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# No InnoDB statistics available for this query
|
||||
SELECT col FROM foo_tbl;
|
||||
|
@@ -1,7 +1,7 @@
|
||||
# Time: 071218 11:48:27 # User@Host: [SQL_SLAVE] @ []
|
||||
# Thread_id: 3 Schema: food
|
||||
# Query_time: 0.000012 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# No InnoDB statistics available for this query
|
||||
SELECT fruit FROM trees;
|
||||
|
@@ -1,44 +1,44 @@
|
||||
# Time: margdl 11:48:27 # User@Host: [SQL_SLAVE] @ []
|
||||
# Thread_id: 10 Schema: foo
|
||||
# Query_time: 0.000012 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# No InnoDB statistics available for this query
|
||||
SELECT col FROM foo_tbl;
|
||||
# Time: margdl 11:48:57 # User@Host: [SQL_SLAVE] @ []
|
||||
# Thread_id: 10 Schema: foo
|
||||
# Query_time: 0.000012 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# No InnoDB statistics available for this query
|
||||
SELECT col FROM foo_tbl;
|
||||
# Time: margdl 11:48:57 # User@Host: [SQL_SLAVE] @ []
|
||||
# Thread_id: 20
|
||||
# Query_time: 0.000012 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# No InnoDB statistics available for this query
|
||||
use bar;
|
||||
SELECT col FROM bar_tbl;
|
||||
# Time: margdl 11:49:05 # User@Host: [SQL_SLAVE] @ []
|
||||
# Thread_id: 10 Schema: bar
|
||||
# Query_time: 0.000012 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# No InnoDB statistics available for this query
|
||||
SELECT col FROM bar_tbl;
|
||||
# Time: margdl 11:49:07 # User@Host: [SQL_SLAVE] @ []
|
||||
# Thread_id: 20
|
||||
# Query_time: 0.000012 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# No InnoDB statistics available for this query
|
||||
use bar;
|
||||
SELECT col FROM bar_tbl;
|
||||
# Time: margdl 11:49:30 # User@Host: [SQL_SLAVE] @ []
|
||||
# Thread_id: 30 Schema: foo
|
||||
# Query_time: 0.000012 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# No InnoDB statistics available for this query
|
||||
SELECT col FROM foo_tbl;
|
||||
|
File diff suppressed because it is too large
Load Diff
@@ -1,8 +1,8 @@
|
||||
# User@Host: [SQL_SLAVE][[SQL_SLAVE]] @ []
|
||||
# Thread_id: 10
|
||||
# Query_time: 0.000512 Lock_time: 0.000077 Rows_sent: 0 Rows_examined: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: Yes Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: Yes Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# InnoDB_IO_r_ops: 1 InnoDB_IO_r_bytes: 2 InnoDB_IO_r_wait: 3.000003
|
||||
# InnoDB_rec_lock_wait: 0.400004 InnoDB_queue_wait: 0.000005
|
||||
# InnoDB_pages_distinct: 24
|
||||
|
@@ -1,8 +1,8 @@
|
||||
# User@Host: [SQL_SLAVE] @ []
|
||||
# Thread_id: 10
|
||||
# Query_time: 0.000512 Lock_time: 0.000077 Rows_sent: 0 Rows_examined: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: Yes Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: Yes Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# InnoDB_IO_r_ops: 1 InnoDB_IO_r_bytes: 2 InnoDB_IO_r_wait: 3.000003
|
||||
# InnoDB_rec_lock_wait: 0.400004 InnoDB_queue_wait: 0.000005
|
||||
# InnoDB_pages_distinct: 24
|
||||
|
@@ -1,52 +1,52 @@
|
||||
# Time: 090805 11:00:27
|
||||
# Thread_id: 1 Schema: db1
|
||||
# Query_time: 0.726052 Lock_time: 0.100091 Rows_sent: 9 Rows_examined: 51
|
||||
# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# No InnoDB statistics available for this query
|
||||
SELECT * FROM foo;
|
||||
# Query_time: 1.726052 Lock_time: 0.010093 Rows_sent: 1 Rows_examined: 1
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# No InnoDB statistics available for this query
|
||||
SELECT id FROM tbl WHERE id = 1;
|
||||
# Query_time: 9.000052 Lock_time: 0.000001 Rows_sent: 900 Rows_examined: 10000
|
||||
# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: Yes Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: Yes Merge_passes: 1
|
||||
# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: Yes Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: Yes Merge_passes: 1
|
||||
# No InnoDB statistics available for this query
|
||||
SELECT COUNT(*) FROM blah WHERE col > 2;
|
||||
# Time: 090805 12:00:27
|
||||
# Thread_id: 2 Schema: db1
|
||||
# Query_time: 0.726052 Lock_time: 0.100091 Rows_sent: 9 Rows_examined: 51
|
||||
# QC_Hit: Yes Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: Yes Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# No InnoDB statistics available for this query
|
||||
SELECT * FROM foo;
|
||||
# Query_time: 0.726052 Lock_time: 0.100091 Rows_sent: 0 Rows_examined: 0
|
||||
# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# No InnoDB statistics available for this query
|
||||
use db2;
|
||||
INSERT INTO tbl VALUES ('a', 'b');
|
||||
# Query_time: 0.000052 Lock_time: 0.010091 Rows_sent: 0 Rows_examined: 0
|
||||
# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# No InnoDB statistics available for this query
|
||||
INSERT INTO tbl VALUES ('c', 'd');
|
||||
# Time: 090805 13:00:27
|
||||
# Thread_id: 3 Schema: db3
|
||||
# Query_time: 1349.000052 Lock_time: 1349.000091 Rows_sent: 0 Rows_examined: 1928472
|
||||
# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: Yes Disk_tmp_table: Yes
|
||||
# Filesort: Yes Disk_filesort: Yes Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: Yes Tmp_table_on_disk: Yes
|
||||
# Filesort: Yes Filesort_on_disk: Yes Merge_passes: 0
|
||||
# No InnoDB statistics available for this query
|
||||
DELETE FROM forest WHERE animal = 'dead';
|
||||
# Query_time: 0.926052 Lock_time: 0.097091 Rows_sent: 8 Rows_examined: 50
|
||||
# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# No InnoDB statistics available for this query
|
||||
SELECT * FROM foo;
|
||||
# Query_time: 0.526052 Lock_time: 0.037091 Rows_sent: 7 Rows_examined:40
|
||||
# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# No InnoDB statistics available for this query
|
||||
SELECT * FROM foo;
|
||||
|
@@ -2,8 +2,8 @@
|
||||
# User@Host: [SQL_SLAVE] @ []
|
||||
# Thread_id: 0
|
||||
# Query_time: 0.000000 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# InnoDB_IO_r_ops: 0 InnoDB_IO_r_bytes: 0 InnoDB_IO_r_wait: 0.000000
|
||||
# InnoDB_rec_lock_wait: 0.000000 InnoDB_queue_wait: 0.000000
|
||||
# InnoDB_pages_distinct: 0
|
||||
|
@@ -1,58 +1,58 @@
|
||||
# Time: 071218 11:48:27 # User@Host: [SQL_SLAVE] @ []
|
||||
# Thread_id: 1 Schema: mk_log_player_1
|
||||
# Query_time: 0.000012 Lock_time: 0.000000 Rows_sent: 10 Rows_examined: 10
|
||||
# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# No InnoDB statistics available for this query
|
||||
SELECT a FROM tbl1;
|
||||
# Time: 071218 11:48:57 # User@Host: [SQL_SLAVE] @ []
|
||||
# Thread_id: 1 Schema: mk_log_player_1
|
||||
# Query_time: 0.000002 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# No InnoDB statistics available for this query
|
||||
# administrator command: ping;
|
||||
# Time: 071218 11:48:57 # User@Host: [SQL_SLAVE] @ []
|
||||
# Thread_id: 2
|
||||
# Query_time: 0.010012 Lock_time: 0.000022 Rows_sent: 3 Rows_examined: 3
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# No InnoDB statistics available for this query
|
||||
use mk_log_player_2;
|
||||
SELECT a FROM tbl2;
|
||||
# Time: 071218 11:49:05 # User@Host: [SQL_SLAVE] @ []
|
||||
# Thread_id: 1 Schema: mk_log_player_2
|
||||
# Query_time: 0.000012 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# No InnoDB statistics available for this query
|
||||
SELECT a FROM mk_log_player_2.tbl2;
|
||||
# Time: 071218 11:49:07 # User@Host: [SQL_SLAVE] @ []
|
||||
# Thread_id: 2
|
||||
# Query_time: 0.000112 Lock_time: 0.000230 Rows_sent: 0 Rows_examined: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# No InnoDB statistics available for this query
|
||||
DELETE FROM mk_log_player_2.tbl2 WHERE a IS NULL;
|
||||
# Time: 071218 11:49:30 # User@Host: [SQL_SLAVE] @ []
|
||||
# Thread_id: 3 Schema: mk_log_player_1
|
||||
# Query_time: 0.000012 Lock_time: 0.000000 Rows_sent: 1 Rows_examined: 10
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# No InnoDB statistics available for this query
|
||||
use mk_log_player_1;
|
||||
SELECT a FROM tbl1 WHERE a = 3;
|
||||
# Time: 071218 11:48:27 # User@Host: [SQL_SLAVE] @ []
|
||||
# Thread_id: 1 Schema: mk_log_player_1
|
||||
# Query_time: 0.000012 Lock_time: 0.021000 Rows_sent: 0 Rows_examined: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# No InnoDB statistics available for this query
|
||||
UPDATE mk_log_player_1.tbl1 SET a = 100 WHERE a = 1;
|
||||
# Time: 071218 11:48:27 # User@Host: [SQL_SLAVE] @ []
|
||||
# Thread_id: 4 Schema: mk_log_player_1
|
||||
# Query_time: 0.000012 Lock_time: 0.500000 Rows_sent: 0 Rows_examined: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# No InnoDB statistics available for this query
|
||||
INSERT INTO mk_log_player_1.tbl1 VALUES (555);
|
||||
|
@@ -37,7 +37,7 @@ if ( $timeout ) {
|
||||
|
||||
ok(
|
||||
$waited >= 2 && $waited <= 3,
|
||||
"--read-timeout waited $waited seconds reading STDIN"
|
||||
"--read-timeout 2 waited $waited seconds reading STDIN"
|
||||
);
|
||||
|
||||
diag(`rm -rf /tmp/mqd.pid`);
|
||||
|
@@ -250,10 +250,10 @@ is_deeply(
|
||||
sample => "UPDATE foo.bar
|
||||
SET biz = '91848182522'",
|
||||
checksum => '12831241509574346332',
|
||||
disk_filesort_cnt => '2',
|
||||
disk_filesort_sum => '0',
|
||||
disk_tmp_table_cnt => '2',
|
||||
disk_tmp_table_sum => '0',
|
||||
filesort_on_disk_cnt => '2',
|
||||
filesort_on_disk_sum => '0',
|
||||
tmp_table_on_disk_cnt => '2',
|
||||
tmp_table_on_disk_sum => '0',
|
||||
filesort_cnt => '2',
|
||||
filesort_sum => '0',
|
||||
full_join_cnt => '2',
|
||||
|
File diff suppressed because one or more lines are too long
@@ -1,3 +1,3 @@
|
||||
$VAR1 = {attribute_types => {Disk_filesort => 'bool',Disk_tmp_table => 'bool',Error_no => 'string',Filesort => 'bool',Full_join => 'bool',Full_scan => 'bool',InnoDB_IO_r_bytes => 'num',InnoDB_IO_r_ops => 'num',InnoDB_IO_r_wait => 'num',InnoDB_pages_distinct => 'num',InnoDB_queue_wait => 'num',InnoDB_rec_lock_wait => 'num',Killed => 'bool',Last_errno => 'string',Lock_time => 'num',Merge_passes => 'num',QC_Hit => 'bool',Query_time => 'num',Rows_examined => 'num',Rows_sent => 'num',Statement_id => 'string',Status_code => 'string',Thread_id => 'string',Tmp_table => 'bool',bytes => 'num',db => 'string',host => 'string',key_print => 'string',pos_in_log => 'num',ts => 'string',user => 'string',val => 'string'},groupby => 'fingerprint',results => {classes => {'update d?tuningdetail_?_? n inner join d?gonzo a using(gonzo) set n.column? = a.column?, n.word? = a.word?' => {Disk_filesort => {cnt => 1,max => 0,min => 0,sum => 0,unq => {'0' => 1}},Disk_tmp_table => {cnt => 1,max => 0,min => 0,sum => 0,unq => {'0' => 1}},Filesort => {cnt => 1,max => 0,min => 0,sum => 0,unq => {'0' => 1}},Full_join => {cnt => 1,max => 0,min => 0,sum => 0,unq => {'0' => 1}},Full_scan => {cnt => 1,max => 1,min => 1,sum => 1,unq => {'1' => 1}},Lock_time => {all => {'93' => 1},cnt => 1,last => '0.000091',max => '0.000091',min => '0.000091',sum => '9.1e-05'},Merge_passes => {all => {'0' => 1},cnt => 1,last => 0,max => 0,min => 0,sum => 0},QC_Hit => {cnt => 1,max => 0,min => 0,sum => 0,unq => {'0' => 1}},Query_time => {all => {'277' => 1},cnt => 1,last => '0.726052',max => '0.726052',min => '0.726052',sum => '0.726052'},Rows_examined => {all => {'510' => 1},cnt => 1,last => 62951,max => 62951,min => 62951,sum => 62951},Rows_sent => {all => {'0' => 1},cnt => 1,last => 0,max => 0,min => 0,sum => 0},Tmp_table => {cnt => 1,max => 0,min => 0,sum => 0,unq => {'0' => 1}},bytes => {all => {'383' => 1},cnt => 1,last => 129,max => 129,min => 129,sum => 129},db => {cnt => 1,max => 'db1',min => 'db1',unq => {db1 => 1}},host => {cnt => 1,max => '',min => '',unq => {'' => 1}},pos_in_log => {all => {'403' => 1},cnt => 1,last => 332,max => 332,min => 332,sum => 332},ts => {cnt => 1,max => '071218 11:48:27',min => '071218 11:48:27',unq => {'071218 11:48:27' => 1}},user => {cnt => 1,max => '[SQL_SLAVE]',min => '[SQL_SLAVE]',unq => {'[SQL_SLAVE]' => 1}}}},globals => {Disk_filesort => {cnt => 8,max => 0,min => 0,sum => 0},Disk_tmp_table => {cnt => 8,max => 0,min => 0,sum => 0},Filesort => {cnt => 8,max => 0,min => 0,sum => 0},Full_join => {cnt => 8,max => 0,min => 0,sum => 0},Full_scan => {cnt => 8,max => 1,min => 0,sum => 1},InnoDB_IO_r_bytes => {all => {'0' => 6},cnt => 6,max => 0,min => 0,sum => 0},InnoDB_IO_r_ops => {all => {'0' => 6},cnt => 6,max => 0,min => 0,sum => 0},InnoDB_IO_r_wait => {all => {'0' => 6},cnt => 6,max => '0.000000',min => '0.000000',sum => '0'},InnoDB_pages_distinct => {all => {'333' => 1,'343' => 4,'349' => 1},cnt => 6,max => 24,min => 11,sum => 107},InnoDB_queue_wait => {all => {'0' => 6},cnt => 6,max => '0.000000',min => '0.000000',sum => '0'},InnoDB_rec_lock_wait => {all => {'0' => 6},cnt => 6,max => '0.000000',min => '0.000000',sum => '0'},Lock_time => {all => {'0' => 1,'68' => 4,'69' => 1,'90' => 1,'93' => 1},cnt => 8,max => '0.000091',min => '0.000000',sum => '0.000304'},Merge_passes => {all => {'0' => 8},cnt => 8,max => 0,min => 0,sum => 0},QC_Hit => {cnt => 8,max => 0,min => 0,sum => 0},Query_time => {all => {'128' => 1,'129' => 4,'214' => 1,'277' => 1,'51' => 1},cnt => 8,max => '0.726052',min => '0.000012',sum => '0.76208'},Rows_examined => {all => {'0' => 7,'510' => 1},cnt => 8,max => 62951,min => 0,sum => 62951},Rows_sent => {all => {'0' => 8},cnt => 8,max => 0,min => 0,sum => 0},Tmp_table => {cnt => 8,max => 0,min => 0,sum => 0},bytes => {all => {'317' => 1,'360' => 2,'367' => 1,'368' => 1,'370' => 1,'379' => 1,'383' => 1},cnt => 8,max => 129,min => 5,sum => 502},db => {cnt => 7,max => 'db1',min => 'db1'},host => {cnt => 8,max => '',min => ''},pos_in_log => {all => {'0' => 1,'403' => 1,'421' => 1,'431' => 1,'438' => 1,'443' => 1,'447' => 1,'450' => 1},cnt => 8,max => 3332,min => 0,sum => 12811},ts => {cnt => 8,max => '071218 11:48:27',min => '071218 11:48:27'},user => {cnt => 8,max => '[SQL_SLAVE]',min => '[SQL_SLAVE]'}},samples => {'update d?tuningdetail_?_? n inner join d?gonzo a using(gonzo) set n.column? = a.column?, n.word? = a.word?' => {Disk_filesort => 'No',Disk_tmp_table => 'No',Filesort => 'No',Full_join => 'No',Full_scan => 'Yes',Lock_time => '0.000091',Merge_passes => '0',QC_Hit => 'No',Query_time => '0.726052',Rows_examined => '62951',Rows_sent => '0',Thread_id => '10',Tmp_table => 'No',arg => 'update db2.tuningdetail_21_265507 n
|
||||
$VAR1 = {attribute_types => {Filesort_on_disk => 'bool',Tmp_table_on_disk => 'bool',Error_no => 'string',Filesort => 'bool',Full_join => 'bool',Full_scan => 'bool',InnoDB_IO_r_bytes => 'num',InnoDB_IO_r_ops => 'num',InnoDB_IO_r_wait => 'num',InnoDB_pages_distinct => 'num',InnoDB_queue_wait => 'num',InnoDB_rec_lock_wait => 'num',Killed => 'bool',Last_errno => 'string',Lock_time => 'num',Merge_passes => 'num',QC_Hit => 'bool',Query_time => 'num',Rows_examined => 'num',Rows_sent => 'num',Statement_id => 'string',Status_code => 'string',Thread_id => 'string',Tmp_table => 'bool',bytes => 'num',db => 'string',host => 'string',key_print => 'string',pos_in_log => 'num',ts => 'string',user => 'string',val => 'string'},groupby => 'fingerprint',results => {classes => {'update d?tuningdetail_?_? n inner join d?gonzo a using(gonzo) set n.column? = a.column?, n.word? = a.word?' => {Filesort_on_disk => {cnt => 1,max => 0,min => 0,sum => 0,unq => {'0' => 1}},Tmp_table_on_disk => {cnt => 1,max => 0,min => 0,sum => 0,unq => {'0' => 1}},Filesort => {cnt => 1,max => 0,min => 0,sum => 0,unq => {'0' => 1}},Full_join => {cnt => 1,max => 0,min => 0,sum => 0,unq => {'0' => 1}},Full_scan => {cnt => 1,max => 1,min => 1,sum => 1,unq => {'1' => 1}},Lock_time => {all => {'93' => 1},cnt => 1,last => '0.000091',max => '0.000091',min => '0.000091',sum => '9.1e-05'},Merge_passes => {all => {'0' => 1},cnt => 1,last => 0,max => 0,min => 0,sum => 0},QC_Hit => {cnt => 1,max => 0,min => 0,sum => 0,unq => {'0' => 1}},Query_time => {all => {'277' => 1},cnt => 1,last => '0.726052',max => '0.726052',min => '0.726052',sum => '0.726052'},Rows_examined => {all => {'510' => 1},cnt => 1,last => 62951,max => 62951,min => 62951,sum => 62951},Rows_sent => {all => {'0' => 1},cnt => 1,last => 0,max => 0,min => 0,sum => 0},Tmp_table => {cnt => 1,max => 0,min => 0,sum => 0,unq => {'0' => 1}},bytes => {all => {'383' => 1},cnt => 1,last => 129,max => 129,min => 129,sum => 129},db => {cnt => 1,max => 'db1',min => 'db1',unq => {db1 => 1}},host => {cnt => 1,max => '',min => '',unq => {'' => 1}},pos_in_log => {all => {'403' => 1},cnt => 1,last => 332,max => 332,min => 332,sum => 332},ts => {cnt => 1,max => '071218 11:48:27',min => '071218 11:48:27',unq => {'071218 11:48:27' => 1}},user => {cnt => 1,max => '[SQL_SLAVE]',min => '[SQL_SLAVE]',unq => {'[SQL_SLAVE]' => 1}}}},globals => {Filesort_on_disk => {cnt => 8,max => 0,min => 0,sum => 0},Tmp_table_on_disk => {cnt => 8,max => 0,min => 0,sum => 0},Filesort => {cnt => 8,max => 0,min => 0,sum => 0},Full_join => {cnt => 8,max => 0,min => 0,sum => 0},Full_scan => {cnt => 8,max => 1,min => 0,sum => 1},InnoDB_IO_r_bytes => {all => {'0' => 6},cnt => 6,max => 0,min => 0,sum => 0},InnoDB_IO_r_ops => {all => {'0' => 6},cnt => 6,max => 0,min => 0,sum => 0},InnoDB_IO_r_wait => {all => {'0' => 6},cnt => 6,max => '0.000000',min => '0.000000',sum => '0'},InnoDB_pages_distinct => {all => {'333' => 1,'343' => 4,'349' => 1},cnt => 6,max => 24,min => 11,sum => 107},InnoDB_queue_wait => {all => {'0' => 6},cnt => 6,max => '0.000000',min => '0.000000',sum => '0'},InnoDB_rec_lock_wait => {all => {'0' => 6},cnt => 6,max => '0.000000',min => '0.000000',sum => '0'},Lock_time => {all => {'0' => 1,'68' => 4,'69' => 1,'90' => 1,'93' => 1},cnt => 8,max => '0.000091',min => '0.000000',sum => '0.000304'},Merge_passes => {all => {'0' => 8},cnt => 8,max => 0,min => 0,sum => 0},QC_Hit => {cnt => 8,max => 0,min => 0,sum => 0},Query_time => {all => {'128' => 1,'129' => 4,'214' => 1,'277' => 1,'51' => 1},cnt => 8,max => '0.726052',min => '0.000012',sum => '0.76208'},Rows_examined => {all => {'0' => 7,'510' => 1},cnt => 8,max => 62951,min => 0,sum => 62951},Rows_sent => {all => {'0' => 8},cnt => 8,max => 0,min => 0,sum => 0},Tmp_table => {cnt => 8,max => 0,min => 0,sum => 0},bytes => {all => {'317' => 1,'360' => 2,'367' => 1,'368' => 1,'370' => 1,'379' => 1,'383' => 1},cnt => 8,max => 129,min => 5,sum => 502},db => {cnt => 7,max => 'db1',min => 'db1'},host => {cnt => 8,max => '',min => ''},pos_in_log => {all => {'0' => 1,'403' => 1,'421' => 1,'431' => 1,'438' => 1,'443' => 1,'447' => 1,'450' => 1},cnt => 8,max => 3332,min => 0,sum => 12811},ts => {cnt => 8,max => '071218 11:48:27',min => '071218 11:48:27'},user => {cnt => 8,max => '[SQL_SLAVE]',min => '[SQL_SLAVE]'}},samples => {'update d?tuningdetail_?_? n inner join d?gonzo a using(gonzo) set n.column? = a.column?, n.word? = a.word?' => {Filesort_on_disk => 'No',Tmp_table_on_disk => 'No',Filesort => 'No',Full_join => 'No',Full_scan => 'Yes',Lock_time => '0.000091',Merge_passes => '0',QC_Hit => 'No',Query_time => '0.726052',Rows_examined => '62951',Rows_sent => '0',Thread_id => '10',Tmp_table => 'No',arg => 'update db2.tuningdetail_21_265507 n
|
||||
inner join db1.gonzo a using(gonzo)
|
||||
set n.column1 = a.column1, n.word3 = a.word3',bytes => 129,cmd => 'Query',db => 'db1',fingerprint => 'update d?tuningdetail_?_? n inner join d?gonzo a using(gonzo) set n.column? = a.column?, n.word? = a.word?',host => '',ip => '',pos_in_log => 332,timestamp => '1197996507',ts => '071218 11:48:27',user => '[SQL_SLAVE]'}}},worst => 'Query_time'};
|
||||
set n.column1 = a.column1, n.word3 = a.word3',bytes => 129,cmd => 'Query',db => 'db1',fingerprint => 'update d?tuningdetail_?_? n inner join d?gonzo a using(gonzo) set n.column? = a.column?, n.word? = a.word?',host => '',ip => '',pos_in_log => 332,timestamp => '1197996507',ts => '071218 11:48:27',user => '[SQL_SLAVE]'}}},worst => 'Query_time'};
|
||||
|
File diff suppressed because one or more lines are too long
@@ -1,7 +1,7 @@
|
||||
# Time: 071218 11:48:27 # User@Host: [SQL_SLAVE] @ []
|
||||
# Thread_id: 10
|
||||
# Query_time: 0.000012 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# No InnoDB statistics available for this query
|
||||
SELECT id FROM issue_611.t WHERE id IN (1,2,3);
|
||||
|
@@ -1,6 +1,6 @@
|
||||
--order-by attribute Rows_read doesn't exist, using Query_time:sum
|
||||
|
||||
# Query 1: 0 QPS, 0x concurrency, ID 0x66825DDC008FFA89 at byte 332 ______
|
||||
# Query 1: 0 QPS, 0x concurrency, ID 0x66825DDC008FFA89 at byte 338 ______
|
||||
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
|
||||
# Query_time sparkline: | ^ |
|
||||
# Time range: all events occurred at 2007-12-18 11:48:27
|
||||
@@ -42,7 +42,7 @@ update db2.tuningdetail_21_265507 n
|
||||
select n.column1 = a.column1, n.word3 = a.word3 from db2.tuningdetail_21_265507 n
|
||||
inner join db1.gonzo a using(gonzo) \G
|
||||
|
||||
# Query 2: 0 QPS, 0x concurrency, ID 0x0FFE94ABA6A2A9E8 at byte 1316 _____
|
||||
# Query 2: 0 QPS, 0x concurrency, ID 0x0FFE94ABA6A2A9E8 at byte 1334 _____
|
||||
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
|
||||
# Query_time sparkline: | ^ |
|
||||
# Time range: all events occurred at 2007-12-18 11:48:27
|
||||
@@ -85,7 +85,7 @@ WHERE vab3concept1upload='6994465'\G
|
||||
# EXPLAIN /*!50100 PARTITIONS*/
|
||||
select vab3concept1id = '91848182522' from db4.vab3concept1upload where vab3concept1upload='6994465'\G
|
||||
|
||||
# Query 3: 0 QPS, 0x concurrency, ID 0xB211BA2B8D6D065C at byte 2363 _____
|
||||
# Query 3: 0 QPS, 0x concurrency, ID 0xB211BA2B8D6D065C at byte 2393 _____
|
||||
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
|
||||
# Query_time sparkline: | ^ |
|
||||
# Time range: all events occurred at 2007-12-18 11:48:27
|
||||
@@ -127,7 +127,7 @@ SET biz = '91848182522'\G
|
||||
# EXPLAIN /*!50100 PARTITIONS*/
|
||||
select biz = '91848182522' from foo.bar \G
|
||||
|
||||
# Query 4: 0 QPS, 0x concurrency, ID 0x6969975466519B81 at byte 2825 _____
|
||||
# Query 4: 0 QPS, 0x concurrency, ID 0x6969975466519B81 at byte 2861 _____
|
||||
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
|
||||
# Query_time sparkline: | ^ |
|
||||
# Time range: all events occurred at 2007-12-18 11:48:27
|
||||
@@ -170,7 +170,7 @@ WHERE fillze='899'\G
|
||||
# EXPLAIN /*!50100 PARTITIONS*/
|
||||
select boop='bop: 899' from bizzle.bat where fillze='899'\G
|
||||
|
||||
# Query 5: 0 QPS, 0x concurrency, ID 0xC22D235B07D1D774 at byte 1840 _____
|
||||
# Query 5: 0 QPS, 0x concurrency, ID 0xC22D235B07D1D774 at byte 1864 _____
|
||||
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
|
||||
# Query_time sparkline: | ^ |
|
||||
# Time range: all events occurred at 2007-12-18 11:48:27
|
||||
@@ -209,7 +209,7 @@ select boop='bop: 899' from bizzle.bat where fillze='899'\G
|
||||
INSERT INTO db1.conch (word3, vid83)
|
||||
VALUES ('211', '18')\G
|
||||
|
||||
# Query 6: 0 QPS, 0x concurrency, ID 0x7546F89214254F2F at byte 803 ______
|
||||
# Query 6: 0 QPS, 0x concurrency, ID 0x7546F89214254F2F at byte 815 ______
|
||||
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
|
||||
# Query_time sparkline: | ^ |
|
||||
# Time range: all events occurred at 2007-12-18 11:48:27
|
||||
|
@@ -1,5 +1,5 @@
|
||||
|
||||
# Query 1: 0 QPS, 0x concurrency, ID 0x66825DDC008FFA89 at byte 332 ______
|
||||
# Query 1: 0 QPS, 0x concurrency, ID 0x66825DDC008FFA89 at byte 338 ______
|
||||
# This item is included in the report because it matches --limit.
|
||||
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
|
||||
# Query_time sparkline: | ^ |
|
||||
|
@@ -1,5 +1,5 @@
|
||||
|
||||
# Query 1: 0 QPS, 0x concurrency, ID 0xB211BA2B8D6D065C at byte 3332 _____
|
||||
# Query 1: 0 QPS, 0x concurrency, ID 0xB211BA2B8D6D065C at byte 3374 _____
|
||||
# This item is included in the report because it matches --limit.
|
||||
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
|
||||
# Query_time sparkline: | ^ |
|
||||
@@ -42,7 +42,7 @@ SET biz = '91848182522'\G
|
||||
# EXPLAIN /*!50100 PARTITIONS*/
|
||||
select biz = '91848182522' from foo.bar \G
|
||||
|
||||
# Query 2: 0 QPS, 0x concurrency, ID 0x66825DDC008FFA89 at byte 332 ______
|
||||
# Query 2: 0 QPS, 0x concurrency, ID 0x66825DDC008FFA89 at byte 338 ______
|
||||
# This item is included in the report because it matches --limit.
|
||||
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
|
||||
# Query_time sparkline: | ^ |
|
||||
|
@@ -1,5 +1,5 @@
|
||||
|
||||
# Query 1: 0 QPS, 0x concurrency, ID 0x66825DDC008FFA89 at byte 332 ______
|
||||
# Query 1: 0 QPS, 0x concurrency, ID 0x66825DDC008FFA89 at byte 338 ______
|
||||
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
|
||||
# Query_time sparkline: | ^ |
|
||||
# Time range: all events occurred at 2007-12-18 11:48:27
|
||||
@@ -41,7 +41,7 @@ update db2.tuningdetail_21_265507 n
|
||||
select n.column1 = a.column1, n.word3 = a.word3 from db2.tuningdetail_21_265507 n
|
||||
inner join db1.gonzo a using(gonzo) \G
|
||||
|
||||
# Query 2: 0 QPS, 0x concurrency, ID 0x0FFE94ABA6A2A9E8 at byte 1316 _____
|
||||
# Query 2: 0 QPS, 0x concurrency, ID 0x0FFE94ABA6A2A9E8 at byte 1334 _____
|
||||
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
|
||||
# Query_time sparkline: | ^ |
|
||||
# Time range: all events occurred at 2007-12-18 11:48:27
|
||||
@@ -84,7 +84,7 @@ WHERE vab3concept1upload='6994465'\G
|
||||
# EXPLAIN /*!50100 PARTITIONS*/
|
||||
select vab3concept1id = '91848182522' from db4.vab3concept1upload where vab3concept1upload='6994465'\G
|
||||
|
||||
# Query 3: 0 QPS, 0x concurrency, ID 0xB211BA2B8D6D065C at byte 3332 _____
|
||||
# Query 3: 0 QPS, 0x concurrency, ID 0xB211BA2B8D6D065C at byte 3374 _____
|
||||
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
|
||||
# Query_time sparkline: | ^ |
|
||||
# Time range: all events occurred at 2007-12-18 11:48:27
|
||||
@@ -126,7 +126,7 @@ SET biz = '91848182522'\G
|
||||
# EXPLAIN /*!50100 PARTITIONS*/
|
||||
select biz = '91848182522' from foo.bar \G
|
||||
|
||||
# Query 4: 0 QPS, 0x concurrency, ID 0x6969975466519B81 at byte 2825 _____
|
||||
# Query 4: 0 QPS, 0x concurrency, ID 0x6969975466519B81 at byte 2861 _____
|
||||
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
|
||||
# Query_time sparkline: | ^ |
|
||||
# Time range: all events occurred at 2007-12-18 11:48:27
|
||||
@@ -169,7 +169,7 @@ WHERE fillze='899'\G
|
||||
# EXPLAIN /*!50100 PARTITIONS*/
|
||||
select boop='bop: 899' from bizzle.bat where fillze='899'\G
|
||||
|
||||
# Query 5: 0 QPS, 0x concurrency, ID 0xC22D235B07D1D774 at byte 1840 _____
|
||||
# Query 5: 0 QPS, 0x concurrency, ID 0xC22D235B07D1D774 at byte 1864 _____
|
||||
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
|
||||
# Query_time sparkline: | ^ |
|
||||
# Time range: all events occurred at 2007-12-18 11:48:27
|
||||
@@ -208,7 +208,7 @@ select boop='bop: 899' from bizzle.bat where fillze='899'\G
|
||||
INSERT INTO db1.conch (word3, vid83)
|
||||
VALUES ('211', '18')\G
|
||||
|
||||
# Query 6: 0 QPS, 0x concurrency, ID 0x7546F89214254F2F at byte 803 ______
|
||||
# Query 6: 0 QPS, 0x concurrency, ID 0x7546F89214254F2F at byte 815 ______
|
||||
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
|
||||
# Query_time sparkline: | ^ |
|
||||
# Time range: all events occurred at 2007-12-18 11:48:27
|
||||
|
@@ -1,5 +1,5 @@
|
||||
|
||||
# Query 1: 0 QPS, 0x concurrency, ID 0x6969975466519B81 at byte 2825 _____
|
||||
# Query 1: 0 QPS, 0x concurrency, ID 0x6969975466519B81 at byte 2861 _____
|
||||
# This item is included in the report because it matches --limit.
|
||||
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
|
||||
# Query_time sparkline: | ^ |
|
||||
|
@@ -2,8 +2,8 @@
|
||||
# User@Host: [SQL_SLAVE][[SQL_SLAVE]] @ []
|
||||
# Thread_id: 10
|
||||
# Query_time: 0.000012 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# No InnoDB statistics available for this query
|
||||
use foo;
|
||||
SELECT col FROM foo_tbl;
|
||||
@@ -11,8 +11,8 @@ SELECT col FROM foo_tbl;
|
||||
# User@Host: [SQL_SLAVE][[SQL_SLAVE]] @ []
|
||||
# Thread_id: 10
|
||||
# Query_time: 0.000012 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# No InnoDB statistics available for this query
|
||||
use foo;
|
||||
SELECT col FROM foo_tbl;
|
||||
@@ -20,8 +20,8 @@ SELECT col FROM foo_tbl;
|
||||
# User@Host: [SQL_SLAVE][[SQL_SLAVE]] @ []
|
||||
# Thread_id: 20
|
||||
# Query_time: 0.000012 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# No InnoDB statistics available for this query
|
||||
use bar;
|
||||
SELECT col FROM bar_tbl;
|
||||
@@ -29,8 +29,8 @@ SELECT col FROM bar_tbl;
|
||||
# User@Host: [SQL_SLAVE][[SQL_SLAVE]] @ []
|
||||
# Thread_id: 10
|
||||
# Query_time: 0.000012 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# No InnoDB statistics available for this query
|
||||
use bar;
|
||||
SELECT col FROM bar_tbl;
|
||||
|
@@ -1,5 +1,5 @@
|
||||
|
||||
# Query 1: 0.05 QPS, 0x concurrency, ID 0xA20C29AF174CE545 at byte 1803 __
|
||||
# Query 1: 0.05 QPS, 0x concurrency, ID 0xA20C29AF174CE545 at byte 1833 __
|
||||
# This item is included in the report because it matches --limit.
|
||||
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
|
||||
# Query_time sparkline: | ^ |
|
||||
@@ -32,7 +32,7 @@
|
||||
# EXPLAIN /*!50100 PARTITIONS*/
|
||||
SELECT col FROM foo_tbl\G
|
||||
|
||||
# Query 2: 0.30 QPS, 0x concurrency, ID 0xD4CD74934382A184 at byte 1445 __
|
||||
# Query 2: 0.30 QPS, 0x concurrency, ID 0xD4CD74934382A184 at byte 1469 __
|
||||
# This item is included in the report because it matches --limit.
|
||||
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
|
||||
# Query_time sparkline: | ^ |
|
||||
|
@@ -1,5 +1,5 @@
|
||||
|
||||
# Query 1: 0.05 QPS, 0.00x concurrency, ID 0xA20C29AF174CE545 at byte 1803
|
||||
# Query 1: 0.05 QPS, 0.00x concurrency, ID 0xA20C29AF174CE545 at byte 1833
|
||||
# This item is included in the report because it matches --limit.
|
||||
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
|
||||
# Query_time sparkline: | ^ |
|
||||
@@ -38,7 +38,7 @@
|
||||
# EXPLAIN /*!50100 PARTITIONS*/
|
||||
SELECT col FROM foo_tbl\G
|
||||
|
||||
# Query 2: 0.30 QPS, 0.00x concurrency, ID 0xD4CD74934382A184 at byte 1445
|
||||
# Query 2: 0.30 QPS, 0.00x concurrency, ID 0xD4CD74934382A184 at byte 1469
|
||||
# This item is included in the report because it matches --limit.
|
||||
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
|
||||
# Query_time sparkline: | ^ |
|
||||
|
@@ -1,6 +1,6 @@
|
||||
|
||||
|
||||
# Query 2: 0.30 QPS, 0.00x concurrency, ID 0xD4CD74934382A184 at byte 1445
|
||||
# Query 2: 0.30 QPS, 0.00x concurrency, ID 0xD4CD74934382A184 at byte 1469
|
||||
# This item is included in the report because it matches --limit.
|
||||
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
|
||||
# Query_time sparkline: | ^ |
|
||||
|
@@ -1,5 +1,5 @@
|
||||
|
||||
# Query 1: 0.05 QPS, 0.00x concurrency, ID 0xA20C29AF174CE545 at byte 1803
|
||||
# Query 1: 0.05 QPS, 0.00x concurrency, ID 0xA20C29AF174CE545 at byte 1833
|
||||
# This item is included in the report because it matches --limit.
|
||||
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
|
||||
# Query_time sparkline: | ^ |
|
||||
@@ -38,7 +38,7 @@
|
||||
# EXPLAIN /*!50100 PARTITIONS*/
|
||||
SELECT col FROM foo_tbl\G
|
||||
|
||||
# Query 2: 0.30 QPS, 0.00x concurrency, ID 0xD4CD74934382A184 at byte 1445
|
||||
# Query 2: 0.30 QPS, 0.00x concurrency, ID 0xD4CD74934382A184 at byte 1469
|
||||
# This item is included in the report because it matches --limit.
|
||||
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
|
||||
# Query_time sparkline: | ^ |
|
||||
|
@@ -1,6 +1,6 @@
|
||||
|
||||
|
||||
# Query 2: 0.30 QPS, 0.00x concurrency, ID 0xD4CD74934382A184 at byte 1445
|
||||
# Query 2: 0.30 QPS, 0.00x concurrency, ID 0xD4CD74934382A184 at byte 1469
|
||||
# This item is included in the report because it matches --limit.
|
||||
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
|
||||
# Query_time sparkline: | ^ |
|
||||
|
@@ -1,5 +1,5 @@
|
||||
|
||||
# Query 1: 0.05 QPS, 0.00x concurrency, ID 0xA20C29AF174CE545 at byte 1803
|
||||
# Query 1: 0.05 QPS, 0.00x concurrency, ID 0xA20C29AF174CE545 at byte 1833
|
||||
# This item is included in the report because it matches --limit.
|
||||
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
|
||||
# Query_time sparkline: | ^ |
|
||||
@@ -32,7 +32,7 @@
|
||||
# EXPLAIN /*!50100 PARTITIONS*/
|
||||
SELECT col FROM foo_tbl\G
|
||||
|
||||
# Query 2: 0.30 QPS, 0.00x concurrency, ID 0xD4CD74934382A184 at byte 1445
|
||||
# Query 2: 0.30 QPS, 0.00x concurrency, ID 0xD4CD74934382A184 at byte 1469
|
||||
# This item is included in the report because it matches --limit.
|
||||
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
|
||||
# Query_time sparkline: | ^ |
|
||||
|
@@ -1,66 +1,66 @@
|
||||
# Time: 090805 11:00:27
|
||||
# Thread_id: 1
|
||||
# Query_time: 0.726052 Lock_time: 0.100091 Rows_sent: 9 Rows_examined: 51
|
||||
# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# No InnoDB statistics available for this query
|
||||
use db1;
|
||||
SELECT * FROM foo;
|
||||
# Time: 090805 11:00:27
|
||||
# Query_time: 1.726052 Lock_time: 0.010093 Rows_sent: 1 Rows_examined: 1
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# No InnoDB statistics available for this query
|
||||
use db1;
|
||||
SELECT id FROM tbl WHERE id = 1;
|
||||
# Time: 090805 11:00:27
|
||||
# Query_time: 9.000052 Lock_time: 0.000001 Rows_sent: 900 Rows_examined: 10000
|
||||
# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: Yes Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: Yes Merge_passes: 1
|
||||
# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: Yes Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: Yes Merge_passes: 1
|
||||
# No InnoDB statistics available for this query
|
||||
use db1;
|
||||
SELECT COUNT(*) FROM blah WHERE col > 2;
|
||||
# Time: 090805 12:00:27
|
||||
# Thread_id: 2
|
||||
# Query_time: 0.726052 Lock_time: 0.100091 Rows_sent: 9 Rows_examined: 51
|
||||
# QC_Hit: Yes Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: Yes Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# No InnoDB statistics available for this query
|
||||
use db1;
|
||||
SELECT * FROM foo;
|
||||
# Time: 090805 12:00:27
|
||||
# Query_time: 0.726052 Lock_time: 0.100091 Rows_sent: 0 Rows_examined: 0
|
||||
# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# No InnoDB statistics available for this query
|
||||
use db2;
|
||||
INSERT INTO tbl VALUES ('a', 'b');
|
||||
# Time: 090805 12:00:27
|
||||
# Query_time: 0.000052 Lock_time: 0.010091 Rows_sent: 0 Rows_examined: 0
|
||||
# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# No InnoDB statistics available for this query
|
||||
use db2;
|
||||
INSERT INTO tbl VALUES ('c', 'd');
|
||||
# Time: 090805 13:00:27
|
||||
# Thread_id: 3
|
||||
# Query_time: 1349.000052 Lock_time: 1349.000091 Rows_sent: 0 Rows_examined: 1928472
|
||||
# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: Yes Disk_tmp_table: Yes
|
||||
# Filesort: Yes Disk_filesort: Yes Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: Yes Tmp_table_on_disk: Yes
|
||||
# Filesort: Yes Filesort_on_disk: Yes Merge_passes: 0
|
||||
# No InnoDB statistics available for this query
|
||||
use db3;
|
||||
DELETE FROM forest WHERE animal = 'dead';
|
||||
# Time: 090805 13:00:27
|
||||
# Query_time: 0.926052 Lock_time: 0.097091 Rows_sent: 8 Rows_examined: 50
|
||||
# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# No InnoDB statistics available for this query
|
||||
use db3;
|
||||
SELECT * FROM foo;
|
||||
# Time: 090805 13:00:27
|
||||
# Query_time: 0.526052 Lock_time: 0.037091 Rows_sent: 7 Rows_examined: 0
|
||||
# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# No InnoDB statistics available for this query
|
||||
use db3;
|
||||
SELECT * FROM foo;
|
||||
|
@@ -1,60 +1,60 @@
|
||||
# Time: 090805 11:00:27
|
||||
# Thread_id: 1
|
||||
# Query_time: 0.726052 Lock_time: 0.100091 Rows_sent: 9 Rows_examined: 51
|
||||
# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# No InnoDB statistics available for this query
|
||||
use db1;
|
||||
SELECT * FROM foo;
|
||||
# Query_time: 1.726052 Lock_time: 0.010093 Rows_sent: 1 Rows_examined: 1
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: No Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# No InnoDB statistics available for this query
|
||||
use db1;
|
||||
SELECT id FROM tbl WHERE id = 1;
|
||||
# Query_time: 9.000052 Lock_time: 0.000001 Rows_sent: 900 Rows_examined: 10000
|
||||
# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: Yes Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: Yes Merge_passes: 1
|
||||
# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: Yes Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: Yes Merge_passes: 1
|
||||
# No InnoDB statistics available for this query
|
||||
use db1;
|
||||
SELECT COUNT(*) FROM blah WHERE col > 2;
|
||||
# Time: 090805 12:00:27
|
||||
# Thread_id: 2
|
||||
# Query_time: 0.726052 Lock_time: 0.100091 Rows_sent: 9 Rows_examined: 51
|
||||
# QC_Hit: Yes Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: Yes Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# No InnoDB statistics available for this query
|
||||
use db1;
|
||||
SELECT * FROM foo;
|
||||
# Query_time: 0.726052 Lock_time: 0.100091 Rows_sent: 0 Rows_examined: 0
|
||||
# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# No InnoDB statistics available for this query
|
||||
use db2;
|
||||
INSERT INTO tbl VALUES ('a', 'b');
|
||||
# Query_time: 0.000052 Lock_time: 0.010091 Rows_sent: 0 Rows_examined: 0
|
||||
# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# No InnoDB statistics available for this query
|
||||
use db2;
|
||||
INSERT INTO tbl VALUES ('c', 'd');
|
||||
# Time: 090805 13:00:27
|
||||
# Thread_id: 3
|
||||
# Query_time: 1349.000052 Lock_time: 1349.000091 Rows_sent: 0 Rows_examined: 1928472
|
||||
# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: Yes Disk_tmp_table: Yes
|
||||
# Filesort: Yes Disk_filesort: Yes Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: Yes Tmp_table_on_disk: Yes
|
||||
# Filesort: Yes Filesort_on_disk: Yes Merge_passes: 0
|
||||
# No InnoDB statistics available for this query
|
||||
use db3;
|
||||
DELETE FROM forest WHERE animal = 'dead';
|
||||
# Query_time: 0.926052 Lock_time: 0.097091 Rows_sent: 8 Rows_examined: 50
|
||||
# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# No InnoDB statistics available for this query
|
||||
use db3;
|
||||
SELECT * FROM foo;
|
||||
# Query_time: 0.526052 Lock_time: 0.037091 Rows_sent: 7 Rows_examined: 0
|
||||
# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Disk_tmp_table: No
|
||||
# Filesort: No Disk_filesort: No Merge_passes: 0
|
||||
# QC_Hit: No Full_scan: Yes Full_join: No Tmp_table: No Tmp_table_on_disk: No
|
||||
# Filesort: No Filesort_on_disk: No Merge_passes: 0
|
||||
# No InnoDB statistics available for this query
|
||||
use db3;
|
||||
SELECT * FROM foo;
|
||||
|
@@ -1,5 +1,5 @@
|
||||
|
||||
# Query 1: 0 QPS, 0x concurrency, ID 0xABE9508269335CD1 at byte 1830 _____
|
||||
# Query 1: 0 QPS, 0x concurrency, ID 0xABE9508269335CD1 at byte 1866 _____
|
||||
# Scores: Apdex = 0.00 [1.0]*, V/M = 0.00
|
||||
# Lock_time sparkline: | ^|
|
||||
# Time range: all events occurred at 2009-08-05 13:00:27
|
||||
@@ -13,11 +13,11 @@
|
||||
# Merge passes 0 0 0 0 0 0 0 0
|
||||
# Query size 16 40 40 40 40 40 0 40
|
||||
# Boolean:
|
||||
# Disk filesor 100% yes, 0% no
|
||||
# Disk tmp tab 100% yes, 0% no
|
||||
# Filesort 100% yes, 0% no
|
||||
# Filesort on 100% yes, 0% no
|
||||
# Full scan 100% yes, 0% no
|
||||
# Tmp table 100% yes, 0% no
|
||||
# Tmp table on 100% yes, 0% no
|
||||
# String:
|
||||
# Databases db3
|
||||
# Lock_time distribution
|
||||
@@ -37,7 +37,7 @@ DELETE FROM forest WHERE animal = 'dead'\G
|
||||
# EXPLAIN /*!50100 PARTITIONS*/
|
||||
select * from forest WHERE animal = 'dead'\G
|
||||
|
||||
# Query 2: 0.00 QPS, 0.00x concurrency, ID 0xAC1BF726F2AB10C5 at byte 916
|
||||
# Query 2: 0.00 QPS, 0.00x concurrency, ID 0xAC1BF726F2AB10C5 at byte 934
|
||||
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.03
|
||||
# Lock_time sparkline: | _^ |
|
||||
# Time range: 2009-08-05 11:00:27 to 13:00:27
|
||||
@@ -70,7 +70,7 @@ select * from forest WHERE animal = 'dead'\G
|
||||
# EXPLAIN /*!50100 PARTITIONS*/
|
||||
SELECT * FROM foo\G
|
||||
|
||||
# Query 3: 0 QPS, 0x concurrency, ID 0xB79802214165F670 at byte 1243 _____
|
||||
# Query 3: 0 QPS, 0x concurrency, ID 0xB79802214165F670 at byte 1267 _____
|
||||
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.73
|
||||
# Lock_time sparkline: | ^^ |
|
||||
# Time range: all events occurred at 2009-08-05 12:00:27
|
||||
@@ -101,7 +101,7 @@ SELECT * FROM foo\G
|
||||
# SHOW CREATE TABLE `db2`.`tbl`\G
|
||||
INSERT INTO tbl VALUES ('a', 'b')\G
|
||||
|
||||
# Query 4: 0 QPS, 0x concurrency, ID 0x1F9B2F47A843D460 at byte 327 ______
|
||||
# Query 4: 0 QPS, 0x concurrency, ID 0x1F9B2F47A843D460 at byte 333 ______
|
||||
# Scores: Apdex = 0.50 [1.0]*, V/M = 0.00
|
||||
# Lock_time sparkline: | ^ |
|
||||
# Time range: all events occurred at 2009-08-05 11:00:27
|
||||
@@ -131,7 +131,7 @@ INSERT INTO tbl VALUES ('a', 'b')\G
|
||||
# EXPLAIN /*!50100 PARTITIONS*/
|
||||
SELECT id FROM tbl WHERE id = 1\G
|
||||
|
||||
# Query 5: 0 QPS, 0x concurrency, ID 0x3F1024B96D9D469E at byte 613 ______
|
||||
# Query 5: 0 QPS, 0x concurrency, ID 0x3F1024B96D9D469E at byte 625 ______
|
||||
# Scores: Apdex = 0.00 [1.0]*, V/M = 0.00
|
||||
# Lock_time sparkline: |^ |
|
||||
# Time range: all events occurred at 2009-08-05 11:00:27
|
||||
@@ -145,7 +145,7 @@ SELECT id FROM tbl WHERE id = 1\G
|
||||
# Merge passes 100 1 1 1 1 1 0 1
|
||||
# Query size 15 39 39 39 39 39 0 39
|
||||
# Boolean:
|
||||
# Disk filesor 100% yes, 0% no
|
||||
# Filesort on 100% yes, 0% no
|
||||
# Full scan 100% yes, 0% no
|
||||
# Tmp table 100% yes, 0% no
|
||||
# String:
|
||||
|
@@ -1,5 +1,5 @@
|
||||
|
||||
# Query 1: 0 QPS, 0x concurrency, ID 0xABE9508269335CD1 at byte 1830 _____
|
||||
# Query 1: 0 QPS, 0x concurrency, ID 0xABE9508269335CD1 at byte 1866 _____
|
||||
# Scores: Apdex = 0.00 [1.0]*, V/M = 0.00
|
||||
# Query_time sparkline: | ^|
|
||||
# Time range: all events occurred at 2009-08-05 13:00:27
|
||||
@@ -13,11 +13,11 @@
|
||||
# Merge passes 0 0 0 0 0 0 0 0
|
||||
# Query size 16 40 40 40 40 40 0 40
|
||||
# Boolean:
|
||||
# Disk filesor 100% yes, 0% no
|
||||
# Disk tmp tab 100% yes, 0% no
|
||||
# Filesort 100% yes, 0% no
|
||||
# Filesort on 100% yes, 0% no
|
||||
# Full scan 100% yes, 0% no
|
||||
# Tmp table 100% yes, 0% no
|
||||
# Tmp table on 100% yes, 0% no
|
||||
# String:
|
||||
# Databases db3
|
||||
# Query_time distribution
|
||||
@@ -37,7 +37,7 @@ DELETE FROM forest WHERE animal = 'dead'\G
|
||||
# EXPLAIN /*!50100 PARTITIONS*/
|
||||
select * from forest WHERE animal = 'dead'\G
|
||||
|
||||
# Query 2: 0.00 QPS, 0.00x concurrency, ID 0xAC1BF726F2AB10C5 at byte 916
|
||||
# Query 2: 0.00 QPS, 0.00x concurrency, ID 0xAC1BF726F2AB10C5 at byte 934
|
||||
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.03
|
||||
# Query_time sparkline: | ^ |
|
||||
# Time range: 2009-08-05 11:00:27 to 13:00:27
|
||||
@@ -70,7 +70,7 @@ select * from forest WHERE animal = 'dead'\G
|
||||
# EXPLAIN /*!50100 PARTITIONS*/
|
||||
SELECT * FROM foo\G
|
||||
|
||||
# Query 3: 0 QPS, 0x concurrency, ID 0xB79802214165F670 at byte 1243 _____
|
||||
# Query 3: 0 QPS, 0x concurrency, ID 0xB79802214165F670 at byte 1267 _____
|
||||
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.73
|
||||
# Query_time sparkline: | ^ ^ |
|
||||
# Time range: all events occurred at 2009-08-05 12:00:27
|
||||
@@ -101,7 +101,7 @@ SELECT * FROM foo\G
|
||||
# SHOW CREATE TABLE `db2`.`tbl`\G
|
||||
INSERT INTO tbl VALUES ('a', 'b')\G
|
||||
|
||||
# Query 4: 0 QPS, 0x concurrency, ID 0x1F9B2F47A843D460 at byte 327 ______
|
||||
# Query 4: 0 QPS, 0x concurrency, ID 0x1F9B2F47A843D460 at byte 333 ______
|
||||
# Scores: Apdex = 0.50 [1.0]*, V/M = 0.00
|
||||
# Query_time sparkline: | ^ |
|
||||
# Time range: all events occurred at 2009-08-05 11:00:27
|
||||
@@ -131,7 +131,7 @@ INSERT INTO tbl VALUES ('a', 'b')\G
|
||||
# EXPLAIN /*!50100 PARTITIONS*/
|
||||
SELECT id FROM tbl WHERE id = 1\G
|
||||
|
||||
# Query 5: 0 QPS, 0x concurrency, ID 0x3F1024B96D9D469E at byte 613 ______
|
||||
# Query 5: 0 QPS, 0x concurrency, ID 0x3F1024B96D9D469E at byte 625 ______
|
||||
# Scores: Apdex = 0.00 [1.0]*, V/M = 0.00
|
||||
# Query_time sparkline: | ^ |
|
||||
# Time range: all events occurred at 2009-08-05 11:00:27
|
||||
@@ -145,7 +145,7 @@ SELECT id FROM tbl WHERE id = 1\G
|
||||
# Merge passes 100 1 1 1 1 1 0 1
|
||||
# Query size 15 39 39 39 39 39 0 39
|
||||
# Boolean:
|
||||
# Disk filesor 100% yes, 0% no
|
||||
# Filesort on 100% yes, 0% no
|
||||
# Full scan 100% yes, 0% no
|
||||
# Tmp table 100% yes, 0% no
|
||||
# String:
|
||||
|
@@ -55,7 +55,7 @@
|
||||
# SHOW CREATE TABLE `db`.`v`\G
|
||||
INSERT INTO db.v (m, b) VALUES ('', 'Exact')\G
|
||||
|
||||
# Query 2: 0 QPS, 0x concurrency, ID 0x9E892D4B16D7BFC2 at byte 519 ______
|
||||
# Query 2: 0 QPS, 0x concurrency, ID 0x9E892D4B16D7BFC2 at byte 525 ______
|
||||
# This item is included in the report because it matches --limit.
|
||||
# Scores: Apdex = 1.00 [1.0]*, V/M = 0.00
|
||||
# Query_time sparkline: | |
|
||||
|
Reference in New Issue
Block a user