innotest2b
上传用户: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 "Innotest2b: 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 * 98641) % $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) % 10); $j++) {
  43. $rnd_str[$i] = $rnd_str[$i]."k";
  44. }
  45. }
  46. ####
  47. ####  Connect
  48. ####
  49. $dbh = $server->connect();
  50. $dbh->do("set autocommit = 0");
  51. for ($i = 0; $i < 1; $i++) {
  52. print "loop $in";
  53. for ($j = 0; $j < $opt_loop_count - 10; $j = $j + 2) {
  54. $dbh->do(
  55. "insert into innotest2b (D, B, C) values (5, '".$rnd_str[$j]."' ,'".$rnd_str[$j]."')")
  56. || print $dbh->errstr;
  57. $dbh->do(
  58. "insert into innotest2a (D, B, C) values (5, '".$rnd_str[$j]."' ,'".$rnd_str[$j]."')")
  59. || print $dbh->errstr;
  60. $dbh->do(
  61. "insert into innotest2c (D, B, C) values (5, '".$rnd_str[$j]."' ,'".$rnd_str[$j]."')")
  62. || print $dbh->errstr;
  63. $dbh->do("delete from innotest2b where A = ".$random[$random[$j]])
  64. || print $dbh->errstr;
  65. $dbh->do("update innotest2b set A = A + 1 where A = ".$random[$j])
  66. || print $dbh->errstr;
  67. if (0 == ($j % 10)) {
  68. $dbh->do("commit");
  69. }
  70. if (0 == ($j % 39)) {
  71. $dbh->do("rollback");
  72. }
  73. if (0 == ($j % 1000)) {
  74. print "round $jn";
  75. }
  76. }
  77. $dbh->do("commit");
  78. }
  79. $dbh->disconnect; # close connection