mysqldumpslow.sh
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:5k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. #!@PERL@
  2. # mysqldumpslow - parse and summarize the MySQL slow query log
  3. # Original version by Tim Bunce, sometime in 2000.
  4. # Further changes by Tim Bunce, 8th March 2001.
  5. use strict;
  6. use Getopt::Long;
  7. # t=time, l=lock time, r=rows
  8. # at, al, and ar are the corresponding averages
  9. my %opt = (
  10.     s => 'at',
  11.     h => '*',
  12. );
  13. GetOptions(%opt,
  14.     'v+', # verbose
  15.     'd+', # debug
  16.     's=s', # what to sort by (t, at, l, al, r, ar etc)
  17.     'r!', # reverse the sort order (largest last instead of first)
  18.     't=i', # just show the top n queries
  19.     'a!', # don't abstract all numbers to N and strings to 'S'
  20.     'n=i', # abstract numbers with at least n digits within names
  21.     'g=s', # grep: only consider stmts that include this string
  22.     'h=s', # hostname of db server for *-slow.log filename (can be wildcard)
  23.     'i=s', # name of server instance (if using mysql.server startup script)
  24.     'l!', # don't subtract lock time from total time
  25. ) or die "Bad option";
  26. unless (@ARGV) {
  27.     my $defaults   = `my_print_defaults mysqld`;
  28.     my $basedir = ($defaults =~ m/--basedir=(.*)/)[0]
  29. or die "Can't determine basedir from 'my_print_defaults mysqld' output: $defaults";
  30.     warn "basedir=$basedirn" if $opt{v};
  31.     my $datadir = ($defaults =~ m/--datadir=(.*)/)[0];
  32.     if (!$datadir or $opt{i}) {
  33. # determine the datadir from the instances section of /etc/my.cnf, if any
  34. my $instances  = `my_print_defaults instances`;
  35. die "Can't determine datadir from 'my_print_defaults mysqld' output: $defaults"
  36.     unless $instances;
  37. my @instances = ($instances =~ m/^--(w+)-/mg);
  38. die "No -i 'instance_name' specified to select among known instances: @instances.n"
  39.     unless $opt{i};
  40. die "Instance '$opt{i}' is unknown (known instances: @instances)n"
  41.     unless grep { $_ eq $opt{i} } @instances;
  42. $datadir = ($instances =~ m/--$opt{i}-datadir=(.*)/)[0]
  43.     or die "Can't determine --$opt{i}-datadir from 'my_print_defaults instances' output: $instances";
  44. warn "datadir=$datadirn" if $opt{v};
  45.     }
  46.     @ARGV = <$datadir/$opt{h}-slow.log>;
  47.     die "Can't find '$datadir/$opt{h}-slow.log'n" unless @ARGV;
  48. }
  49. warn "nReading mysql slow query log from @ARGVn";
  50. my @pending;
  51. my %stmt;
  52. $/ = ";n#"; # read entire statements using paragraph mode
  53. while ( defined($_ = shift @pending) or defined($_ = <>) ) {
  54.     warn "[[$_]]n" if $opt{d}; # show raw paragraph being read
  55.     my @chunks = split /^/.*Version.*started with[00-377]*?Time.*Id.*Command.*Argument.*n/m;
  56.     if (@chunks > 1) {
  57. unshift @pending, map { length($_) ? $_ : () } @chunks;
  58. warn "<<".join(">>n<<",@chunks).">>" if $opt{d};
  59. next;
  60.     }
  61.     s/^#? Time: d{6}s+d+:d+:d+.*n//;
  62.     my ($user,$host) = s/^#? User@Host:s+(S+)s+@s+(S+).*n// ? ($1,$2) : ('','');
  63.     s/^# Time: (d+)  Lock_time: (d+)  Rows_sent: (d+).*n//;
  64.     my ($t, $l, $r) = ($1, $2, $3);
  65.     $t -= $l unless $opt{l};
  66.     # remove fluff that mysqld writes to log when it (re)starts:
  67.     s!^/.*Version.*started with:.*n!!mg;
  68.     s!^Tcp port: d+  Unix socket: S+n!!mg;
  69.     s!^Time.*Id.*Command.*Argument.*n!!mg;
  70.     s/^use w+;n//; # not consistently added
  71.     s/^SET timestamp=d+;n//;
  72.     s/^[  ]*n//mg; # delete blank lines
  73.     s/^[  ]*/  /mg; # normalize leading whitespace
  74.     s/s*;s*(#s*)?$//; # remove trailing semicolon(+newline-hash)
  75.     next if $opt{g} and !m/$opt{g}/io;
  76.     unless ($opt{a}) {
  77. s/bd+b/N/g;
  78. s/b0x[0-9A-Fa-f]+b/N/g;
  79. s/'.*?'/'S'/g;
  80. s/".*?"/"S"/g;
  81. # -n=8: turn log_20001231 into log_NNNNNNNN
  82. s/([a-z_]+)(d{$opt{n},})/$1.('N' x length($2))/ieg if $opt{n};
  83. # abbreviate massive "in (...)" statements and similar
  84. s!(([NS],){100,})!sprintf("$2,{repeated %d times}",length($1)/2)!eg;
  85.     }
  86.     my $s = $stmt{$_} ||= { users=>{}, hosts=>{} };
  87.     $s->{c} += 1;
  88.     $s->{t} += $t;
  89.     $s->{l} += $l;
  90.     $s->{r} += $r;
  91.     $s->{users}->{$user}++ if $user;
  92.     $s->{hosts}->{$host}++ if $host;
  93.     warn "{{$_}}nn" if $opt{d}; # show processed statement string
  94. }
  95. foreach (keys %stmt) {
  96.     my $v = $stmt{$_} || die;
  97.     my ($c, $t, $l, $r) = @{ $v }{qw(c t l r)};
  98.     $v->{at} = $t / $c;
  99.     $v->{al} = $l / $c;
  100.     $v->{ar} = $r / $c;
  101. }
  102. my @sorted = sort { $stmt{$b}->{$opt{s}} <=> $stmt{$a}->{$opt{s}} } keys %stmt;
  103. @sorted = @sorted[0 .. $opt{t}-1] if $opt{t};
  104. @sorted = reverse @sorted         if $opt{r};
  105. foreach (@sorted) {
  106.     my $v = $stmt{$_} || die;
  107.     my ($c, $t,$at, $l,$al, $r,$ar) = @{ $v }{qw(c t at l al r ar)};
  108.     my @users = keys %{$v->{users}};
  109.     my $user  = (@users==1) ? $users[0] : sprintf "%dusers",scalar @users;
  110.     my @hosts = keys %{$v->{hosts}};
  111.     my $host  = (@hosts==1) ? $hosts[0] : sprintf "%dhosts",scalar @hosts;
  112.     printf "Count: %d  Time=%.2fs (%ds)  Lock=%.2fs (%ds)  Rows=%.1f (%d), $user@$hostn%snn",
  113.     $c, $at,$t, $al,$l, $ar,$r, $_;
  114. }