innotest2a
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:3k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. #!/usr/bin/perl
  2. ############################################################################
  3. #     Stress test for MySQL/Innobase combined database
  4. #     (c) 2000 Innobase Oy & MySQL AB
  5. #
  6. ############################################################################
  7. use Cwd; use DBI;
  8. use Benchmark;
  9. $opt_loop_count = 100000;
  10. $pwd = cwd(); $pwd = "." if ($pwd eq ''); require "$pwd/bench-init.pl" || die "Can't read Configuration file: $!n";
  11. print "Innotest2a: MySQL/InnoDB stress test in Perl for FOREIGN keysn";
  12. print "------------------------------------------------------------n";
  13. print "This is a randomized stress test for concurrent inserts,n";
  14. print "updates, deletes, commits and rollbacks with foreign keys withn";
  15. print "the ON DELETE ... clause. The test will generaten";
  16. print "also a lot of deadlocks, duplicate key errors, and other SQL errors.n";
  17. print "n";
  18. print "You should run innotest2, innotest2a, and innotest2b concurrently.n";
  19. print "The thing to watch is that the server does not crash or does notn";
  20. print "print to the .err log anything. Currently, due to a buglet in MySQL,n";
  21. print "warnings about MySQL lock reservations can appear in the .err log.n";
  22. print "The test will run very long, even several hours. You can killn";
  23. print "the perl processes running this test at any time and do CHECKn";
  24. print "TABLE on tables innotest2a, b, c, d in the 'test' database.n";
  25. print "n";
  26. print "Some of these stress tests will print a lot of SQL errorsn";
  27. print "to the standard output. That is not to be worried about.n";
  28. print "You can direct the output to a file like this:n";
  29. print "perl innotest2 > out2nn";
  30. print "Generating random keysn";
  31. $random[$opt_loop_count] = 0;
  32. $rnd_str[$opt_loop_count] = "a";
  33. for ($i = 0; $i < $opt_loop_count; $i++) {
  34. $random[$i] = ($i * 63857) % $opt_loop_count;
  35.    if (0 == ($random[$i] % 3)) {
  36.    $rnd_str[$i] = "khD";
  37. } else { if (1 == ($random[$i] % 3)) {
  38. $rnd_str[$i] = "kHd";
  39. } else { if (2 == ($random[$i] % 3)) {
  40. $rnd_str[$i] = "khd";
  41. }}}
  42. for ($j = 0; $j < (($i * 764877) % 20); $j++) {
  43. $rnd_str[$i] = $rnd_str[$i]."k";
  44. }
  45. }
  46. ####
  47. ####  Connect
  48. ####
  49. $dbh = $server->connect()
  50. || die $dbh->errstr;
  51. $dbh->do("set autocommit = 0");
  52. for ($i = 0; $i < 5; $i++) {
  53. print "loop $in";
  54. for ($j = 0; $j < $opt_loop_count - 10; $j = $j + 1) {
  55. $dbh->do("update innotest2a set B = '".$rnd_str[$j + 1]."' where A = ".$random[$j + 5])
  56. || print $dbh->errstr;
  57. $dbh->do("delete from innotest2a where A = ".$random[$random[$j]])
  58. || print $dbh->errstr;
  59. if (0 == ($j % 10)) {
  60. $dbh->do("commit");
  61. }
  62. if (0 == ($j % 39)) {
  63. $dbh->do("rollback");
  64. }
  65. if (0 == ($j % 1000)) {
  66. print "round $jn";
  67. }
  68. }
  69. $dbh->do("commit");
  70. }
  71. $dbh->disconnect; # close connection