innotest1.sh
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:5k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. #!@PERL@
  2. ############################################################################
  3. #     Stress test for MySQL/InnoDB combined database
  4. #     (c) 2002 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 "Innotest1: MySQL/InnoDB stress test in Perln";
  12. print "-------------------------------------------n";
  13. print "This is a randomized stress test for concurrent inserts,n";
  14. print "updates, deletes, commits and rollbacks. The test will generaten";
  15. print "also a lot of deadlocks, duplicate key errors, and other SQL errors.n";
  16. print "n";
  17. print "You should run innotest1, innotest1a, and innotest1b concurrently.n";
  18. print "The thing to watch is that the server does not crash or does notn";
  19. print "print to the .err log anything. Currently, due to a buglet in MySQL,n";
  20. print "warnings about MySQL lock reservations can appear in the .err log.n";
  21. print "The test will run very long, even several hours. You can killn";
  22. print "the perl processes running this test at any time and do CHECKn";
  23. print "TABLE on table innotest1 in the 'test' database.n";
  24. print "n";
  25. print "Some of these stress tests will print a lot of SQL errorsn";
  26. print "to the standard output. That is not to be worried about.n";
  27. print "You can direct the output to a file like this:n";
  28. print "perl innotest1 > out1nn";
  29.      
  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] = "kjgclgrtfuylfluyfyufyulfulfyyulofuyolfyufyufuyfyufyufyufyufyyufujhfghd";
  37. } else { if (1 == ($random[$i] % 3)) {
  38. $rnd_str[$i] = "khd";
  39. } else { if (2 == ($random[$i] % 3)) {
  40. $rnd_str[$i] = "kh";
  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. $n = 0;
  53. for ($i = 0; $i < 1; $i++) {
  54. print "Dropping table innotest1n";
  55. $dbh->do("drop table innotest1");
  56. print "Creating table innotest1n";
  57. $dbh->do(
  58. "create table innotest1 (A INT NOT NULL AUTO_INCREMENT, D INT NOT NULL, B VARCHAR(200) NOT NULL, C VARCHAR(175), E TIMESTAMP, F TIMESTAMP, G DATETIME, PRIMARY KEY (A, D), INDEX
  59. (B, C), INDEX (C), INDEX (D), INDEX(E), INDEX(G)) TYPE = INNODB")
  60. || die $dbh->errstr;
  61. for ($j = 2; $j < $opt_loop_count - 10; $j = $j + 2) {
  62. if ($j % 10 == 0) {
  63. $dbh->do(
  64. "insert into innotest1 (D, B, C, F, G) values (5, '".$rnd_str[$j]."' ,'".$rnd_str[$j]."', NULL, NULL)");
  65. } else {
  66. $dbh->do(
  67. "insert into innotest1 (D, B, C, F, G) values (5, '".$rnd_str[$j]."' ,'".$rnd_str[$j]."', NOW(), NOW())");
  68. }
  69. $dbh->do("update innotest1 set B = '".$rnd_str[$j + 7]."' where A = ".$random[$j + 5]);
  70. $dbh->do("update innotest1 SET D = D + 1 where A =".($j / 2 - 500));
  71. $dbh->do("update innotest1 set B = '".$rnd_str[$j + 1]."' where A =".($j / 2 - 505));
  72. $dbh->do("delete from innotest1 where A = ".$random[$random[$j]]);
  73. fetch_all_rows($dbh, "select b, c from innotest1 where a > ".$random[$j]." and a < ".($random[$j] + 7));
  74. if (0 == ($j % 10)) {
  75. $dbh->do("commit");
  76. }
  77. if (0 == ($j % 97)) {
  78. fetch_all_rows($dbh, "select c, e, f, g from innotest1 where c = '".$rnd_str[$j - 68]."'");
  79. fetch_all_rows($dbh, "select b, e, f, g from innotest1 where b = '".$rnd_str[$j - 677]."'");
  80. fetch_all_rows($dbh, "select b, c, e, f, g from innotest1 where c = '".$rnd_str[$j - 68]."'");
  81. fetch_all_rows($dbh, "select b, c, g from innotest1 where b = '".$rnd_str[$j - 677]."'");
  82. fetch_all_rows($dbh, "select a, b, c, e, f, g from innotest1 where c = '".$rnd_str[$j - 68]."'");
  83. fetch_all_rows($dbh, "select a, b, c, e, f, g from innotest1 where b = '".$rnd_str[$j - 677]."'");
  84. fetch_all_rows($dbh, "select d, b, c from innotest1 where c = '".$rnd_str[$j - 68]."'");
  85. fetch_all_rows($dbh, "select d, b, c, g from innotest1 where b = '".$rnd_str[$j - 677]."'");
  86. $dbh->do("rollback");
  87. }
  88.          for ($k = 1; $k < 10; $k++) {
  89.                  $n += fetch_all_rows($dbh,
  90. "SELECT a, d from innotest1 where a = ".(($k * 1764767) % $j));
  91.                  $n += fetch_all_rows($dbh,
  92. "SELECT * from innotest1 where a = ".(($k * 187567) % $j));
  93.          }
  94. if (0 == ($j % 1000)) {
  95. print "round $j, $n rows fetchedn";
  96. }
  97. if (0 == ($j % 20000)) {
  98. print "Checking table innotest1...n";
  99. $dbh->do("check table innotest1");
  100. print "Table checked.n";
  101. }
  102. }
  103. $dbh->do("commit");
  104. }
  105. $dbh->disconnect; # close connection