home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / mysql / mysql-3.23.28g-win.exe / DATA1.CAB / Benchmark_Files / bench / compare-results < prev    next >
Text File  |  2000-11-22  |  16KB  |  624 lines

  1. #!/my/gnu/bin/perl5
  2. # Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  3. #
  4. # This library is free software; you can redistribute it and/or
  5. # modify it under the terms of the GNU Library General Public
  6. # License as published by the Free Software Foundation; either
  7. # version 2 of the License, or (at your option) any later version.
  8. #
  9. # This library is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  12. # Library General Public License for more details.
  13. #
  14. # You should have received a copy of the GNU Library General Public
  15. # License along with this library; if not, write to the Free
  16. # Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
  17. # MA 02111-1307, USA
  18. #
  19. # a little program to generate a table of results
  20. # just read all the RUN-*.log files and format them nicely
  21. # Made by Luuk de Boer
  22. # Patched by Monty
  23.  
  24. use Getopt::Long;
  25.  
  26. $opt_server="mysql";
  27. $opt_dir="output";
  28. $opt_machine="";
  29. $opt_relative=$opt_same_server=$opt_help=$opt_Information=$opt_skip_count=$opt_no_bars=$opt_verbose=0;
  30.  
  31. GetOptions("Information","help","server=s","cmp=s","machine=s","relative","same-server","dir=s","skip-count","no-bars","html","verbose") || usage();
  32.  
  33. usage() if ($opt_help || $opt_Information);
  34.  
  35. $opt_cmp=lc(join(",",sort(split(',',$opt_cmp))));
  36.  
  37. if ($opt_same_server)
  38. {
  39.   $files="$opt_dir/RUN-$opt_server*$opt_machine";
  40. }
  41. else
  42. {
  43.   $files="$opt_dir/RUN-*$opt_machine";
  44. }
  45. $files.= "-cmp-$opt_cmp" if (length($opt_cmp));
  46.  
  47. #
  48. # Go trough all RUN files and gather statistics.
  49. #
  50.  
  51. if ($#ARGV == -1)
  52. {
  53.   @ARGV=glob($files);
  54.   $automatic_files=1;
  55. }
  56. else
  57. {
  58.   $opt_cmp="";
  59. }
  60.  
  61. foreach (@ARGV)
  62. {
  63.   next if (!$opt_cmp && /-cmp-/ && $automatic_files || defined($found{$_}));
  64.   $prog=$filename = $_;
  65.   $found{$_}=1;            # Remove dupplicates
  66.   /RUN-(.*)$/;
  67.   $tot{$prog}{'version'}=$1;
  68.   push(@key_order,$prog);
  69.   $next = 0;
  70.   open(TMP, "<$filename") || die "Can't open $filename: $!\n";
  71.   while (<TMP>)
  72.   {
  73.     chomp;
  74.     if ($next == 0) {
  75.       if (/Server version:\s+(\S+.*)/i)
  76.       {
  77.     $tot{$prog}{'server'} = $1;
  78.       }
  79.       elsif (/Arguments:\s+(.+)/i)
  80.       {
  81.     $arguments= $1;
  82.     # Remove some standard, not informative arguments
  83.     $arguments =~ s/--force|--log|--use-old\S*|--server=\S+|--cmp=\S+|--user=\S+|--pass=\S+|--machine=\S+|--dir=\S+//g;
  84.     if (($tmp=index($arguments,"--comment")) >= 0)
  85.     {
  86.       if (($end=index($arguments,$tmp+2,"--")) >= 0)
  87.       {
  88.         substr($arguments,$tmp,($end-$tmp))="";
  89.       }
  90.       else
  91.       {
  92.         $arguments=substr($arguments,0,$tmp);
  93.       }
  94.     }
  95.     $arguments =~ s/\s+/ /g;
  96.     $tot{$prog}{'arguments'}=$arguments;
  97.       }
  98.       elsif (/Comments:\s+(.+)/i) {
  99.     $tot{$prog}{'comments'} = $1;
  100.       } elsif (/^(\S+):\s*(estimated\s|)total\stime:\s+([\d.]+)\s+(wallclock\s|)secs/i)
  101.       {
  102.     $tmp = $1; $tmp =~ s/://;
  103.     $tot{$prog}{$tmp} = [ $3, (length($2) ? "+" : "")];
  104.     $op1{$tmp} = $tmp;
  105.       } elsif (/Totals per operation:/i) {
  106.     $next = 1;
  107.     next;
  108.       }
  109.     }
  110.     elsif ($next == 1)
  111.     {
  112.       if (/^(\S+)\s+([\d.]+)\s+([\d.]+)\s+([\d.]+)\s+([\d.]+)\s+([\d.]+)\s*([+|?])*/)
  113.       {
  114.     $tot1{$prog}{$1} = [$2,$6,$7];
  115.     $op{$1} = $1;
  116.       }
  117.     }
  118.   }
  119. }
  120.  
  121. if (!%op)
  122. {
  123.   print "Didn't find any files matching: '$files'\n";
  124.   print "Use the --cmp=server,server option to compare benchmarks\n";
  125.   exit 1;
  126. }
  127.  
  128.  
  129. # everything is loaded ...
  130. # now we have to create a fancy output :-)
  131.  
  132. # I prefer to redirect scripts instead to force it to file ; Monty
  133. #
  134. # open(RES, ">$resultfile") || die "Can't write to $resultfile: $!\n";
  135. # select(RES)
  136. #
  137.  
  138. if ($opt_html) {
  139.   html_output();
  140. } else {
  141.   ascii_output();
  142. }
  143. exit 0;
  144.  
  145. #
  146. # some output + format functions;
  147. #
  148.  
  149. sub ascii_output {
  150.   print <<EOF;
  151. This is the result file of the different benchmark tests.
  152.  
  153. The number in () after each tests shows how many SQL commands the particular
  154. test did.  As one test may have many different parameters this gives only
  155. a rough picture of what was done.  Check the source for more information :)
  156.  
  157. Keep in mind that one can\'t compare benchmarks run with different --cmp
  158. options. The --cmp options sets the all limits according to the worst
  159. limit for all server in the benchmark.
  160.  
  161. Numbers marked with '+' are estimated according to previous runs because
  162. the query took longer than a given time-limit to finish. The estimation
  163. shouldn\'t be far from the real result thought.
  164.  
  165. Numbers marked with '?' contains results that gave wrong result. This can only
  166. be used as an indication of how long it took for the server to produce a wrong
  167. result :)
  168.  
  169. Numbers marked with '*' are tests that was run a different number times
  170. than the test in the first column.  The reason for this is normally that the
  171. marked test was run with different options that affects the number of tests
  172. or that the test was from another version of the MySQL benchmarks.
  173.  
  174. Hope this will give you some idea how each db is performing at what thing ....
  175. Hope you like it .... Luuk & Monty (1997)
  176.  
  177. EOF
  178.  
  179.   if ($opt_relative)
  180.   {
  181.     print "Column 1 is in seconds. All other columns are presented relative\n";
  182.     print "to this. 1.00 is the same, bigger numbers indicates slower\n\n";
  183.   }
  184.  
  185.   if ($opt_verbose)
  186.   {
  187.     print "The test values is printed in the format 'time:number of tests'\n";
  188.   }
  189.  
  190.   if (length($opt_cmp))
  191.   {
  192.     print "The test was run with limits from: $opt_cmp\n\n";
  193.   }
  194.   print "The result logs which where found and the options:\n";
  195.   $bar= $opt_no_bars ? " " : "|";
  196.  
  197.   # Move $opt_server first in array if not filename on command line
  198.   if ($automatic_files)
  199.   {
  200.     @key_order=sort {$a cmp $b} keys %tot;
  201.     for ($i=0; $i <= $#key_order; $i++)
  202.     {
  203.       if ($tot{$key_order[$i]}{'version'} =~ /^$opt_server-/)
  204.       {
  205.     unshift(@key_order,$key_order[$i]);
  206.     splice(@key_order,$i+1,1);
  207.     last;
  208.       }
  209.     }
  210.   }
  211.   # Print header
  212.  
  213.   $column_count=0;
  214.   foreach $key (@key_order)
  215.   {
  216.     $tmp=$tmp=$tot{$key}{'version'};
  217.     $tmp =~ s/-cmp-$opt_cmp// if (length($opt_cmp));
  218.     $column_count++;
  219.     printf "%2d %-40.40s: %s %s\n", $column_count, $tmp,
  220.     $tot{$key}{'server'}, $tot{$key}{'arguments'};
  221.     print "  $tot{$key}{'comments'}\n"
  222.       if ($tot{$key}{'comments'} =~ /\w+/);
  223.   }
  224.  
  225.   print "\n";
  226.  
  227.   $namewidth=($opt_skip_count && !$opt_verbose) ? 29 : 36;
  228.   $colwidth= $opt_relative ? 10 : 7;
  229.   $count_width=7;
  230.   $colwidth+=$count_width if ($opt_verbose);
  231.  
  232.   print_sep("=");
  233.   printf "%-$namewidth.${namewidth}s${bar}", "Operation";
  234.   $count = 1;
  235.   foreach $key (@key_order)
  236.   {
  237.     printf "%${colwidth}d${bar}", $count;
  238.     $count++;
  239.   }
  240.   printf "\n%-$namewidth.${namewidth}s${bar}", "";
  241.   foreach $key (@key_order)
  242.   {
  243.     $ver=$tot{$key}{'version'};
  244.     $ver =~ s/-[a-zA-Z0-9_\.]+-cmp-$opt-cmp$//;
  245.     printf "%${colwidth}.${colwidth}s${bar}", $ver;
  246.   }
  247.   print "\n";
  248.   print_sep("-");
  249.   print_string($opt_relative ? "Relative results per test (First column is in seconds):" : "Results per test in seconds:");
  250.   print_sep("-");
  251.  
  252.   foreach $key (sort {$a cmp $b} keys %op1)
  253.   {
  254.     printf "%-$namewidth.${namewidth}s${bar}", $key;
  255.     $first=undef();
  256.     foreach $server (@key_order)
  257.     {
  258.       print_value($first,$tot{$server}{$key}->[0],undef(),$tot{$server}{$key}->[1]);
  259.       $first=$tot{$server}{$key}->[0] if (!defined($first));
  260.     }
  261.     print "\n";
  262.   }
  263.  
  264.   print_sep("-");
  265.   print_string("The results per operation:");
  266.   print_sep("-");
  267.  
  268.   foreach $key (sort {$a cmp $b} keys %op)
  269.   {
  270.     next if ($key =~ /TOTALS/i);
  271.     $tmp=$key;
  272.     $count=$tot1{$key_order[0]}{$key}->[1];
  273.     $tmp.= " (" . $count .  ")" if (!$skip_count);
  274.     printf "%-$namewidth.${namewidth}s${bar}", $tmp;
  275.     $first=undef();
  276.     foreach $server (@key_order)
  277.     {
  278.       $tmp= $count != $tot1{$server}{$key}->[1] ? "*" : "";
  279.       print_value($first,$tot1{$server}{$key}->[0],$tot1{$server}{$key}->[1],
  280.           $tot1{$server}{$key}->[2] . $tmp);
  281.       $first=$tot1{$server}{$key}->[0] if (!defined($first));
  282.     }
  283.     print "\n";
  284.   }
  285.  
  286.   print_sep("-");
  287.   $key="TOTALS";
  288.   printf "%-$namewidth.${namewidth}s${bar}", $key;
  289.   $first=undef();
  290.   foreach $server (@key_order)
  291.   {
  292.     print_value($first,$tot1{$server}{$key}->[0],undef(),
  293.         $tot1{$server}{$key}->[2]);
  294.     $first=$tot1{$server}{$key}->[0] if (!defined($first));
  295.   }
  296.   print "\n";
  297.   print_sep("=");
  298. }
  299.  
  300.  
  301. sub html_output
  302. {
  303.   my $template="template.html";
  304.   my $title="MySQL | | Information | Benchmarks | Compare with $opt_cmp";
  305.   my $image="info.gif";
  306.   $bar="";
  307.  
  308.   open(TEMPLATE, $template) || die;
  309.   while (<TEMPLATE>)
  310.   {
  311.     if (/<center>/)
  312.     {
  313.       print $_;
  314.       print "<!---- This is AUTOMATICALLY Generated. Do not edit here! ---->\n";
  315.     }
  316.     elsif (/TITLE:SUBTITLE/)
  317.     {
  318.       s|TITLE:SUBTITLE|$title|;
  319.       print $_;
  320.     }
  321.     elsif (/TITLE:COMPARE/)
  322.     {
  323.       s|TITLE:COMPARE|$opt_cmp|;
  324.       print $_;
  325.     }
  326.     elsif (/ subchapter name /)
  327.     {
  328.       # Nothing here for now
  329.       print $_;
  330.     }
  331.     elsif (/ text of chapter /)
  332.     {
  333.       print $_;
  334.       print_html_body();
  335.     }
  336.     else
  337.     {
  338.       print $_;
  339.     }
  340.   }
  341.   close(TEMPLATE);
  342. }
  343.  
  344.  
  345. sub print_html_body
  346. {
  347.   my ($title,$count,$key);
  348.   print <<EOF;
  349. <center>
  350. <font size=+4><b>MySQL Benchmark Results</b></font><br>
  351. <font size=+1><b>Compare with $opt_cmp</b></font><p><p>
  352. </center>
  353. This is the result file of the different benchmark tests.
  354. <p>
  355.  
  356. The number in () after each tests shows how many SQL commands the particular
  357. test did.  As one test may have many different parameters this gives only
  358. a rough picture of what was done.  Check the source for more information.
  359. <p>
  360. Keep in mind that one can\'t compare benchmarks run with different --cmp
  361. options. The --cmp options sets the all limits according to the worst
  362. limit for all server in the benchmark.
  363. <p>
  364. Numbers marked with '+' are estimated according to previous runs because
  365. the query took longer than a given time-limit to finish. The estimation
  366. shouldn\'t be far from the real result thought.
  367. <p>
  368. Numbers marked with '?' contains results that gave wrong result. This can only
  369. be used as an indication of how long it took for the server to produce a wrong
  370. result :)
  371. <p>
  372. Hope this will give you some idea how each db is performing at what thing ....
  373. <br>
  374. Hope you like it .... Luuk & Monty (1997)
  375. <p><p>
  376. EOF
  377.  
  378.   if ($opt_relative)
  379.   {
  380.     print "Column 1 is in seconds. All other columns are presented relative<br>\n";
  381.     print "to this. 1.00 is the same, bigger numbers indicates slower<p>\n\n";
  382.   }
  383.  
  384.   if (length($opt_cmp))
  385.   {
  386.     print "The test was run with limits from: $opt_cmp\n\n";
  387.   }
  388.   print "The result logs which where found and the options:<br>\n";
  389.  
  390.   # Move $opt_server first in array
  391.   if ($automatic_files)
  392.   {
  393.     @key_order=sort {$a cmp $b} keys %tot;
  394.     for ($i=0; $i <= $#key_order; $i++)
  395.     {
  396.       if ($tot{$key_order[$i]}{'version'} =~ /^$opt_server-/)
  397.       {
  398.     unshift(@key_order,$key_order[$i]);
  399.     splice(@key_order,$i+1,1);
  400.     last;
  401.       }
  402.     }
  403.   }
  404.   # Print header
  405.   print "<p><center><table border=1 width=100%>\n";
  406.   $column_count=0;
  407.   foreach $key (@key_order)
  408.   {
  409.     $tmp=$tot{$key}{'version'};
  410.     $tmp =~ s/-cmp-$opt_cmp// if (length($opt_cmp));
  411.     $column_count++;
  412. #    printf "<tr><td>%2d<td>%-36.36s<td>%s %s</tr>\n", $column_count, $tmp,
  413.     printf "<tr><td>%2d</td><td>%s</td><td>%s %s</td></tr>\n",
  414.     $column_count, $tmp, $tot{$key}{'server'}, $tot{$key}{'arguments'};
  415.     print "<tr><td colspan=3>$tot{$key}{'comments'}</td></tr>\n"
  416.       if ($tot{$key}{'comments'} =~ /\w+/);
  417.   }
  418.  
  419.   print "</table></center><p><center><table border=1 width=100%>\n";
  420.  
  421.   $namewidth=$opt_skip_count ? 22 :29;
  422.   $colwidth= $opt_relative ? 10 : 7;
  423.   $count_width=7;
  424.  
  425.   printf "<tr><td><b>%s</b></td>\n", "Operation";
  426.   $count = 1;
  427.   foreach $key (@key_order)
  428.   {
  429.     $ver=$tot{$key}{'version'};
  430.     printf "<td align=center><b>%d", $count;
  431.     printf "<br>%${colwidth}.${colwidth}s</b></td>\n", substr($ver,0,index($ver,"-"));
  432.     $count++;
  433.   }
  434.   print "</tr>\n";
  435.   $title = $opt_relative ? "Relative results per test (First column is in seconds):" : "Results per test in seconds:";
  436.   printf "<tr><td colspan=%d><b>%s</b></td></tr>\n", $count, $title;
  437.  
  438.   foreach $key (sort {$a cmp $b} keys %op1)
  439.   {
  440.     if (!$opt_html)
  441.     {
  442.       printf "<tr><td>%-$namewidth.${namewidth}s</td>", $key;
  443.     }
  444.     else
  445.     {
  446.       print "<tr><td>$key</td>";
  447.     }
  448.     $first=undef();
  449.     foreach $server (@key_order)
  450.     {
  451.       print_value($first,$tot{$server}{$key}->[0],undef(),
  452.           $tot{$server}{$key}->[1]);
  453.       $first=$tot{$server}{$key}->[0] if (!defined($first));
  454.     }
  455.     print "</tr>\n";
  456.   }
  457.  
  458.   $title = "The results per operation:";
  459.   printf "<tr><td colspan=%d><b>%s</b></td></tr>\n", $count, $title;
  460.  
  461.   foreach $key (sort {$a cmp $b} keys %op)
  462.   {
  463.     next if ($key =~ /TOTALS/i);
  464.     $tmp=$key;
  465.     $tmp.= " (" . $tot1{$key_order[0]}{$key}->[1] . ")" if (!$skip_count);
  466.     if (!$opt_html)
  467.     {
  468.       printf "<tr><td>%-$namewidth.${namewidth}s</td>", $tmp;
  469.     }
  470.     else
  471.     {
  472.       print "<tr><td>$tmp</td>";
  473.     }
  474.     $first=undef();
  475.     foreach $server (@key_order)
  476.     {
  477.       print_value($first,$tot1{$server}{$key}->[0],
  478.           $tot1{$server}{$key}->[1],
  479.           $tot1{$server}{$key}->[2]);
  480.       $first=$tot1{$server}{$key}->[0] if (!defined($first));
  481.     }
  482.     print "</tr>\n";
  483.   }
  484.  
  485.   $key="TOTALS";
  486.   printf "<tr><td><b>%-$namewidth.${namewidth}s</b></td>", $key;
  487.   $first=undef();
  488.   foreach $server (@key_order)
  489.   {
  490.     print_value($first,$tot1{$server}{$key}->[0],undef(),
  491.         $tot1{$server}{$key}->[2]);
  492.     $first=$tot1{$server}{$key}->[0] if (!defined($first));
  493.   }
  494.   print "</tr>\n</table>\n";
  495. }
  496.  
  497.  
  498. sub print_sep
  499. {
  500.   my ($sep)=@_;
  501.   print $sep x ($namewidth + (($colwidth+1) * $column_count)+1),"\n";
  502. }
  503.  
  504.  
  505. sub print_value
  506. {
  507.   my ($first,$value,$count,$flags)=@_;
  508.   my ($tmp,$width);
  509.  
  510.   if (defined($value))
  511.   {
  512.     if (!defined($first) || !$opt_relative)
  513.     {
  514.       $tmp=sprintf("%.2f",$value);
  515.     }
  516.     else
  517.     {
  518.       $first=1 if ($first == 0); # Assume that it took one second instead of 0
  519.       $tmp= sprintf("%.2f",$value/$first);
  520.     }
  521.     if (defined($flags))
  522.     {
  523.       $tmp="+".$tmp if ($flags =~ /\+/);
  524.       $tmp="?".$tmp if ($flags =~ /\?/);
  525.       $tmp="*".$tmp if ($flags =~ /\*/);
  526.     }
  527.   }
  528.   else
  529.   {
  530.     $tmp="";
  531.   }
  532.   $width= ($opt_verbose ? $colwidth - $count_width : $colwidth);
  533.   if (!$opt_html)
  534.   {
  535.     $tmp= " " x ($width-length($tmp)) . $tmp if (length($tmp) < $width);
  536.   }
  537.   if ($opt_verbose)
  538.   {
  539.     if ($count)
  540.     {
  541.       $tmp.= ":" . " " x ($count_width-1-length($count)) . $count;
  542.     }
  543.     else
  544.     {
  545.       $tmp.= " " x ($count_width);
  546.     }
  547.   }
  548.  
  549.   if (!$opt_html) {
  550.     print $tmp . "${bar}";
  551.   } else {
  552.     print "<td align=right>$tmp</td>";
  553.   }
  554. }
  555.  
  556.  
  557. sub print_string
  558. {
  559.   my ($str)=@_;
  560.   if (!$opt_html)
  561.   {
  562.     my ($width);
  563.     $width=$namewidth + ($colwidth+1)*$column_count;
  564.     $str=substr($str,1,$width) if (length($str) > $width);
  565.     print($str," " x ($width - length($str)),"${bar}\n");
  566.   }
  567.   else
  568.   {
  569.     print $str,"\n";
  570.   }
  571. }
  572.  
  573.  
  574. sub usage
  575. {
  576.     print <<EOF;
  577. $0  Ver 1.2
  578.  
  579. This program parses all RUN files from old 'run-all-tests --log' scripts
  580. and makes a nice comparable table.
  581.  
  582. $0 takes currently the following options:
  583.  
  584. --help or --Information        
  585.   Shows this help
  586.  
  587. --cmp=server,server,server (Default $opt_cmp)
  588. Compares all runs that are done with the same --cmp options to run-all-tests.
  589. The most normal options are '--cmp=mysql,pg,solid' and '--cmp ""'
  590.  
  591. --dir=...  (Default $opt_dir)
  592. From which directory one should get the runs.  All runs made by
  593. run-all-tests --log is saved in the 'output' directory.
  594. In the 'results' directory you may have some example runs from different
  595. databases.
  596.  
  597. --html
  598.   Print the table in html format.
  599.  
  600. --machine='full-machine-name' (Default $opt_machine)
  601. Use only runs that match this machine.
  602.  
  603. --relative
  604. Show all numbers in times of the first server where the time for the
  605. first server is 1.0
  606.  
  607. --same-server
  608. Compare all runs for --server=....  The --machine is not used in this case
  609. This is nice to compare how the same server runs on different machines.
  610.  
  611. --server='server name'  (Default $opt_server)
  612. Put this server in the first result column.
  613.  
  614. --skip-count
  615. Do not write the number of tests after the test-name.
  616.  
  617. --verbose
  618. Write the number of tests in each column. This is useful when some column
  619. is marked with '*'.
  620. EOF
  621.  
  622.   exit(0);
  623. }
  624.