bench-init.pl
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:15k
源码类别:

模拟服务器

开发平台:

C/C++

  1. #!/usr/bin/perl
  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. ##########################################################
  20. # this is the base file every test is using ....
  21. # this is made for not changing every file if we want to
  22. # add an option or just want to change something in
  23. # code what is the same in every file ...
  24. ##########################################################
  25. #
  26. # The exported values are:
  27. # $opt_... Various options
  28. # $date Current date in ISO format
  29. # $server Object for current server
  30. # $limits Hash reference to limits for benchmark
  31. $benchmark_version="2.14";
  32. use Getopt::Long;
  33. require "$pwd/server-cfg" || die "Can't read Configuration file: $!n";
  34. $|=1; # Output data immediately
  35. $opt_skip_test=$opt_skip_create=$opt_skip_delete=$opt_verbose=$opt_fast_insert=$opt_lock_tables=$opt_debug=$opt_skip_delete=$opt_fast=$opt_force=$opt_log=$opt_use_old_results=$opt_help=$opt_odbc=$opt_small_test=$opt_small_tables=$opt_samll_key_tables=$opt_stage=$opt_old_headers=$opt_die_on_errors=$opt_tcpip=0;
  36. $opt_cmp=$opt_user=$opt_password="";
  37. $opt_server="mysql"; $opt_dir="output";
  38. $opt_host="localhost";$opt_database="test";
  39. $opt_machine=""; $opt_suffix="";
  40. $opt_create_options=undef;
  41. $opt_time_limit=10*60; # Don't wait more than 10 min for some tests
  42. $log_prog_args=join(" ", skip_arguments(@ARGV,"comments","cmp","server",
  43. "user", "host", "database", "password",
  44. "use-old-results","skip-test",
  45. "machine", "dir", "suffix", "log"));
  46. GetOptions("skip-test=s","comments=s","cmp=s","server=s","user=s","host=s","database=s","password=s","loop-count=i","row-count=i","skip-create","skip-delete","verbose","fast-insert","lock-tables","debug","fast","force","field-count=i","regions=i","groups=i","time-limit=i","log","use-old-results","machine=s","dir=s","suffix=s","help","odbc","small-test","small-tables","small-key-tables","stage=i","old-headers","die-on-errors","create-options=s","hires","tcpip","silent") || usage();
  47. usage() if ($opt_help);
  48. $server=get_server($opt_server,$opt_host,$opt_database,$opt_odbc,
  49.                    machine_part());
  50. $limits=merge_limits($server,$opt_cmp);
  51. $date=date();
  52. @estimated=(0.0,0.0,0.0); # For estimated time support
  53. if ($opt_hires)
  54. {
  55.   eval "use Time::HiRes;";
  56. }
  57. {
  58.   my $tmp= $opt_server;
  59.   $tmp =~ s/_odbc$//;
  60.   if (length($opt_cmp) && index($opt_cmp,$tmp) < 0)
  61.   {
  62.     $opt_cmp.=",$tmp";
  63.   }
  64. }
  65. $opt_cmp=lc(join(",",sort(split(',',$opt_cmp))));
  66. #
  67. # set opt_lock_tables if one uses --fast and drivers supports it
  68. #
  69. if (($opt_lock_tables || $opt_fast) && $server->{'limits'}->{'lock_tables'})
  70. {
  71.   $opt_lock_tables=1;
  72. }
  73. else
  74. {
  75.   $opt_lock_tables=0;
  76. }
  77. if ($opt_fast)
  78. {
  79.   $opt_fast_insert=1;
  80.   $opt_suffix="_fast" if (!length($opt_suffix));
  81. }
  82. if ($opt_odbc)
  83. {
  84.    $opt_suffix="_odbc" if (!length($opt_suffix));
  85. }
  86. if (!$opt_silent)
  87. {
  88.   print "Testing server '" . $server->version() . "' at $datenn";
  89. }
  90. if ($opt_debug)
  91. {
  92.   print "nCurrent limits: n";
  93.   foreach $key (sort keys %$limits)
  94.   {
  95.     print $key . " " x (30-length($key)) . $limits->{$key} . "n";
  96.   }
  97.   print "n";
  98. }
  99. #
  100. # Some help functions
  101. #
  102. sub skip_arguments
  103. {
  104.   my($argv,@skip_args)=@_;
  105.   my($skip,$arg,$name,@res);
  106.   foreach $arg (@$argv)
  107.   {
  108.     if ($arg =~ /^-+([^=]*)/)
  109.     {
  110.       $name=$1;
  111.       foreach $skip (@skip_args)
  112.       {
  113. if (index($skip,$name) == 0)
  114. {
  115.   $name=""; # Don't use this parameters
  116.   last;
  117. }
  118.       }
  119.       push (@res,$arg) if (length($name));
  120.     }
  121.   }
  122.   return @res;
  123. }
  124. sub merge_limits
  125. {
  126.   my ($server,$cmp)= @_;
  127.   my ($name,$tmp_server,$limits,$res_limits,$limit,$tmp_limits);
  128.   $res_limits=$server->{'limits'};
  129.   if ($cmp)
  130.   {
  131.     foreach $name (split(",",$cmp))
  132.     {
  133.       $tmp_server= (get_server($name,$opt_host, $opt_database,
  134.        $opt_odbc,machine_part())
  135.     || die "Unknown SQL server: $namen");
  136.       $limits=$tmp_server->{'limits'};
  137.       %new_limits=();
  138.       foreach $limit (keys(%$limits))
  139.       {
  140. if (defined($res_limits->{$limit}) && defined($limits->{$limit}))
  141. {
  142.   $new_limits{$limit}=min($res_limits->{$limit},$limits->{$limit});
  143. }
  144.       }
  145.       %tmp_limits=%new_limits;
  146.       $res_limits=%tmp_limits;
  147.     }
  148.   }
  149.   return $res_limits;
  150. }
  151. sub date
  152. {
  153.   my ($sec, $min, $hour, $mday, $mon, $year) = localtime(time());
  154.   sprintf("%04d-%02d-%02d %2d:%02d:%02d",
  155.   1900+$year,$mon+1,$mday,$hour,$min,$sec);
  156. }
  157. sub min
  158. {
  159.   my($min)=$_[0];
  160.   my($i);
  161.   for ($i=1 ; $i <= $#_; $i++)
  162.   {
  163.     $min=$_[$i] if ($min > $_[$i]);
  164.   }
  165.   return $min;
  166. }
  167. sub max
  168. {
  169.   my($max)=$_[0];
  170.   my($i);
  171.   for ($i=1 ; $i <= $#_; $i++)
  172.   {
  173.     $max=$_[$i] if ($max < $_[$i]);
  174.   }
  175.   return $max;
  176. }
  177. #
  178. # Execute many statements in a row
  179. #
  180. sub do_many
  181. {
  182.   my ($dbh,@statements)=@_;
  183.   my ($statement,$sth);
  184.   foreach $statement (@statements)
  185.   {
  186.     if (!($sth=$dbh->do($statement)))
  187.     {
  188.       die "Can't execute command '$statement'nError: $DBI::errstrn";
  189.     }
  190.   }
  191. }
  192. sub safe_do_many
  193. {
  194.   my ($dbh,@statements)=@_;
  195.   my ($statement,$sth);
  196.   foreach $statement (@statements)
  197.   {
  198.     if (!($sth=$dbh->do($statement)))
  199.     {
  200.       print STDERR "Can't execute command '$statement'nError: $DBI::errstrn";
  201.       return 1;
  202.     }
  203.   }
  204.   return 0;
  205. }
  206. #
  207. # Do a query and fetch all rows from a statement and return the number of rows
  208. #
  209. sub fetch_all_rows
  210. {
  211.   my ($dbh,$query,$must_get_result)=@_;
  212.   my ($count,$sth);
  213.   $count=0;
  214.   print "$query: " if ($opt_debug);
  215.   if (!($sth= $dbh->prepare($query)))
  216.   {
  217.     print "n" if ($opt_debug);
  218.     die "Error occured with prepare($query)n -> $DBI::errstrn";
  219.     return undef;
  220.   }
  221.   if (!$sth->execute)
  222.   {
  223.     print "n" if ($opt_debug);
  224.     if (defined($server->{'error_on_execute_means_zero_rows'}) &&
  225.        !$server->abort_if_fatal_error())
  226.     {
  227.       if (defined($must_get_result) && $must_get_result)
  228.       {
  229. die "Error: Query $query didn't return any rowsn";
  230.       }
  231.       $sth->finish;
  232.       print "0n" if ($opt_debug);
  233.       return 0;
  234.     }
  235.     die "Error occured with execute($query)n -> $DBI::errstrn";
  236.     $sth->finish;
  237.     return undef;
  238.   }
  239.   while ($sth->fetchrow_arrayref)
  240.   {
  241.     $count++;
  242.   }
  243.   print "$countn" if ($opt_debug);
  244.   if (defined($must_get_result) && $must_get_result && !$count)
  245.   {
  246.     die "Error: Query $query didn't return any rowsn";
  247.   }
  248.   $sth->finish;
  249.   undef($sth);
  250.   return $count;
  251. }
  252. sub do_query
  253. {
  254.   my($dbh,$query)=@_;
  255.   print "$queryn" if ($opt_debug);
  256.   $dbh->do($query) or
  257.     die "nError executing '$query':n$DBI::errstrn";
  258. }
  259. #
  260. # Run a query X times
  261. #
  262. sub time_fetch_all_rows
  263. {
  264.   my($test_text,$result_text,$query,$dbh,$test_count)=@_;
  265.   my($i,$loop_time,$end_time,$count,$rows,$estimated);
  266.   print $test_text . "n"   if (defined($test_text));
  267.   $count=$rows=0;
  268.   $loop_time=new Benchmark;
  269.   for ($i=1 ; $i <= $test_count ; $i++)
  270.   {
  271.     $count++;
  272.     $rows+=fetch_all_rows($dbh,$query) or die $DBI::errstr;
  273.     $end_time=new Benchmark;
  274.     last if ($estimated=predict_query_time($loop_time,$end_time,$count,$i,
  275.    $test_count));
  276.   }
  277.   $end_time=new Benchmark;
  278.   if ($estimated)
  279.   { print "Estimated time"; }
  280.   else
  281.   { print "Time"; }
  282.   print " for $result_text ($count:$rows) " .
  283.     timestr(timediff($end_time, $loop_time),"all") . "nn";
  284. }
  285. #
  286. # Handle estimated time of the server is too slow
  287. # Returns 0 if one should continue as normal
  288. #
  289. sub predict_query_time
  290. {
  291.   my ($loop_time,$end_time,$count_ref,$loop,$loop_count)= @_;
  292.   my ($k,$tmp);
  293.   if (($end_time->[0] - $loop_time->[0]) > $opt_time_limit)
  294.   {
  295.     # We can't wait until the SUN dies.  Try to predict the end time
  296.     if ($loop != $loop_count)
  297.     {
  298.       $tmp=($end_time->[0] - $loop_time->[0]);
  299.       print "Note: Query took longer then time-limit: $opt_time_limitnEstimating end time based on:n";
  300.       print "$$count_ref queries in $loop loops of $loop_count loops took $tmp secondsn";
  301.       for ($k=0; $k < 3; $k++)
  302.       {
  303. $tmp=$loop_time->[$k]+($end_time->[$k]-$loop_time->[$k])/$loop*
  304.   $loop_count;
  305. $estimated[$k]+=($tmp-$end_time->[$k]);
  306. $end_time->[$k]=$tmp;
  307.       }
  308.       $$count_ref= int($$count_ref/$loop*$loop_count);
  309.       return 1;
  310.     }
  311.   }
  312.   return 0;
  313. }
  314. #
  315. # standard end of benchmark
  316. #
  317. sub end_benchmark
  318. {
  319.   my ($start_time)=@_;
  320.   $end_time=new Benchmark;
  321.   if ($estimated[0])
  322.   {
  323.     print "Estimated total time: ";
  324.     $end_time->[0]+=$estimated[0];
  325.     $end_time->[1]+=$estimated[1];
  326.     $end_time->[2]+=$estimated[2];
  327.   }
  328.   else
  329.   {
  330.     print "Total time: "
  331.     }
  332.   print timestr(timediff($end_time, $start_time),"all") . "n";
  333.   exit 0;
  334. }
  335. sub print_time
  336. {
  337.   my ($estimated)=@_;
  338.   if ($estimated)
  339.   { print "Estimated time"; }
  340.   else
  341.   { print "Time"; }
  342. }
  343. #
  344. # Create a filename part for the machine that can be used for log file.
  345. #
  346. sub machine_part
  347. {
  348.   my ($name,$orig);
  349.   return $opt_machine if (length($opt_machine)); # Specified by user
  350. # Specified by user
  351.   $orig=$name=machine();
  352.   $name="win9$1" if ($orig =~ /win.*9(d)/i);
  353.   $name="NT_$1" if ($orig =~ /Windows NT.*(d+.d+)/i);
  354.   $name="win2k" if ($orig =~ /Windows 2000/i);
  355.   $name =~ s/s+/_/g; # Make the filenames easier to parse
  356.   $name =~ s/-/_/g;
  357.   $name =~ s///_/g;
  358.   return $name;
  359. }
  360. sub machine
  361. {
  362.   $name= `uname -s -r -m`;
  363.   if ($?)
  364.   {
  365.     $name= `uname -s -m`;
  366.   }
  367.   if ($?)
  368.   {
  369.     $name= `uname -s`;
  370.   }
  371.   if ($?)
  372.   {
  373.     $name= `uname`;
  374.   }
  375.   if ($?)
  376.   {
  377.     $name="unknown";
  378.   }
  379.   chomp($name); $name =~ s/[nr]//g;
  380.   return $name;
  381. }
  382. #
  383. # Usage
  384. #
  385. sub usage
  386. {
  387.     print <<EOF;
  388. The MySQL benchmarks Ver $benchmark_version
  389. All benchmarks takes the following options:
  390. --comments
  391.   Add a comment to the benchmark output.  Comments should contain
  392.   extra information that 'uname -a' doesn't give and if the database was
  393.   stared with some specific, non default, options.
  394. --cmp=server[,server...]
  395.   Run the test with limits from the given servers.  If you run all servers
  396.   with the same --cmp, you will get a test that is comparable between
  397.   the different sql servers.
  398. --create-options=#
  399.   Extra argument to all create statements.  If you for example want to
  400.   create all MySQL tables as BDB tables use:
  401.   --create-options=TYPE=BDB
  402. --database (Default $opt_database)
  403.   In which database the test tables are created.
  404. --debug
  405.   This is a test specific option that is only used when debugging a test.
  406.   Print out debugging information.
  407. --dir (Default $opt_dir)
  408.   Option to 'run-all-tests' to where the test results should be stored.
  409. --fast
  410.   Allow the database to use non standard ANSI SQL commands to make the
  411.   test go faster.
  412. --fast-insert
  413.   Use "insert into table_name values(...)" instead of
  414.   "insert into table_name (....) values(...)"
  415.   If the database supports it, some tests uses multiple value lists.
  416. --field-count
  417.   This is a test specific option that is only used when debugging a test.
  418.   This usually means how many fields there should be in the test table.
  419. --force
  420.   This is a test specific option that is only used when debugging a test.
  421.   Continue the test even if there is some error.
  422.   Delete tables before creating new ones.
  423. --groups (Default $opt_groups)
  424.   This is a test specific option that is only used when debugging a test.
  425.   This usually means how many different groups there should be in the test.
  426. --lock-tables
  427.   Allow the database to use table locking to get more speed.
  428. --log
  429.   Option to 'run-all-tests' to save the result to the '--dir' directory.
  430. --loop-count (Default $opt_loop_count)
  431.   This is a test specific option that is only used when debugging a test.
  432.   This usually means how many times times each test loop is executed.
  433. --help
  434.   Shows this help
  435. --host='host name' (Default $opt_host)
  436.   Host name where the database server is located.
  437. --machine="machine or os_name"
  438.   The machine/os name that is added to the benchmark output filename.
  439.   The default is the OS name + version.
  440. --odbc
  441.   Use the ODBC DBI driver to connect to the database.
  442. --password='password'
  443.   Password for the current user.
  444. --regions
  445.   This is a test specific option that is only used when debugging a test.
  446.   This usually means how AND levels should be tested.
  447. --old-headers
  448.   Get the old benchmark headers from the old RUN- file.
  449. --server='server name'  (Default $opt_server)
  450.   Run the test on the given SQL server.
  451.   Known servers names are: Access, Adabas, AdabasD, Empress, Oracle,
  452.   Informix, DB2, mSQL, MS-SQL, MySQL, Pg, Solid and Sybase
  453. --silent
  454.   Don't print info about the server when starting test.
  455. --skip-delete
  456.   This is a test specific option that is only used when debugging a test.
  457.   This will keep the test tables after the test is run.
  458. --skip-test=test1[,test2,...]
  459.   For run-all-programs;  Don't execute the named tests.
  460. --small-test
  461.   This runs some tests with smaller limits to get a faster test.
  462.   Can be used if you just want to verify that the database works, but
  463.   don't have time to run a full test.
  464. --small-tables
  465.   This runs some tests that generate big tables with fewer rows.
  466.   This can be used with databases that can't handle that many rows
  467.   because of pre-sized partitions.
  468. --suffix (Default $opt_suffix)
  469.   The suffix that is added to the database name in the benchmark output
  470.   filename.  This can be used to run the benchmark multiple times with
  471.   different server options without overwritten old files.
  472.   When using --fast the suffix is automaticly set to '_fast'.
  473. --tcpip
  474.   Inform test suite that we are using TCP/IP to connect to the server. In
  475.   this case we cant do many new connections in a row as we in this case may
  476.   fill the TCP/IP stack
  477. --time-limit (Default $opt_time_limit)
  478.   How long a test loop is allowed to take, in seconds, before the end result
  479.   is 'estimated'.
  480. --use-old-results
  481.   Option to 'run-all-tests' to use the old results from the  '--dir' directory
  482.   instead of running the tests.
  483. --user='user_name'
  484.   User name to log into the SQL server.
  485. --verbose
  486.   This is a test specific option that is only used when debugging a test.
  487.   Print more information about what is going on.
  488. EOF
  489.   exit(0);
  490. }
  491. ####
  492. #### The end of the base file ...
  493. ####
  494. 1;