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