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

MySQL数据库

开发平台:

Visual C++

  1. #!/usr/bin/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 = 200000;
  10. $pwd = cwd(); $pwd = "." if ($pwd eq ''); require "$pwd/bench-init.pl" || die "Can't read Configuration file: $!n";
  11. print "Innotest1b: 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. print "Generating random keysn";
  30. $random[$opt_loop_count] = 0;
  31. $rnd_str[$opt_loop_count] = "a";
  32. for ($i = 0; $i < $opt_loop_count; $i++) {
  33. $random[$i] = ($i * 63857) % $opt_loop_count;
  34.    if (0 == ($random[$i] % 3)) {
  35.    $rnd_str[$i] = "kjgclgrtfuylfluyfyufyulfulfyyulofuyolfyufyufuyfyufyufyufyufyyufujhfghd";
  36. } else { if (1 == ($random[$i] % 3)) {
  37. $rnd_str[$i] = "khd";
  38. } else { if (2 == ($random[$i] % 3)) {
  39. $rnd_str[$i] = "kh";
  40. }}}
  41. for ($j = 0; $j < (($i * 764877) % 20); $j++) {
  42. $rnd_str[$i] = $rnd_str[$i]."k";
  43. }
  44. }
  45. ####
  46. ####  Connect
  47. ####
  48. $dbh = $server->connect()
  49. || die $dbh->errstr;
  50. $dbh->do("set autocommit = 0");
  51. for ($i = 0; $i < 5; $i++) {
  52. print "loop $in";
  53. for ($j = 1; $j < $opt_loop_count - 10; $j = $j + 2) {
  54. fetch_all_rows($dbh, "select b, c from innotest1 where a > ".$random[$j]." and a < ".($random[$j] + 7));
  55. if (0 == ($j % 37)) {
  56. $dbh->do("commit");
  57. }
  58. if (0 == ($j % 533)) {
  59. $dbh->do("rollback");
  60. }
  61. if (0 == ($j % 537)) {
  62. print fetch_all_rows($dbh, "select c from innotest1 where c = '".$rnd_str[$j - 67]."'");
  63. print fetch_all_rows($dbh, "select b from innotest1 where b = '".$rnd_str[$j - 688]."'");
  64. print fetch_all_rows($dbh, "select b, c from innotest1 where c = '".$rnd_str[$j - 67]."'");
  65. print fetch_all_rows($dbh, "select b, c from innotest1 where b = '".$rnd_str[$j - 622]."'");
  66. print fetch_all_rows($dbh, "select a, b, c from innotest1 where c = '".$rnd_str[$j - 68]."'");
  67. print fetch_all_rows($dbh, "select a, b, c from innotest1 where b = '".$rnd_str[$j - 644]."'");
  68. print fetch_all_rows($dbh, "select d, b, c from innotest1 where c = '".$rnd_str[$j - 68]."'");
  69. print fetch_all_rows($dbh, "select d, b, c from innotest1 where b = '".$rnd_str[$j - 677]."'");
  70. print "n";
  71. }
  72. if (0 == (($j - 1) % 1000)) {
  73. print "round $jn";
  74. }
  75. }
  76. $dbh->do("commit");
  77. }
  78. $dbh->disconnect; # close connection