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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2003 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. #include "mgmapi.h"
  14. #include <string.h>
  15. #include <NdbMain.h>
  16. #include <OutputStream.hpp>
  17. #include <NdbOut.hpp>
  18. #include <NdbSleep.h>
  19. #include <getarg.h>
  20. #include <NdbRestarter.hpp>
  21. #include <NdbRestarts.hpp>
  22. #include <NDBT.hpp>
  23. int main(int argc, const char** argv){
  24.   ndb_init();
  25.   const char* _hostName = NULL;
  26.   int _loops = 10;
  27.   int _wait = 15;
  28.   int _help = 0;
  29.   int _error_insert = 0;
  30.   int _initial = 0;
  31.   int _master = 0;
  32.   int _maxwait = 120;
  33.   int _multiple = 0;
  34.   struct getargs args[] = {
  35.     { "seconds", 's', arg_integer, &_wait, 
  36.       "Seconds to wait between each restart(0=random)", "secs" },
  37.     { "max seconds", 'm', arg_integer, &_maxwait, 
  38.       "Max seconds to wait between each restart. Default is 120 seconds", 
  39.       "msecs" },
  40.     { "loops", 'l', arg_integer, &_loops, 
  41.       "Number of loops(0=forever)", "loops"},
  42.     { "initial", 'i', arg_flag, &_initial, "Initial node restart"},
  43.     { "error-insert", 'e', arg_flag, &_error_insert, "Use error insert"},
  44.     { "master", 'm', arg_flag, &_master, 
  45.       "Restart the master"},
  46.     { "multiple", 'x', arg_flag, &_multiple,
  47.       "Multiple random node restarts. OBS! Even and odd node Ids must be separated into each node group"},
  48.     { "usage", '?', arg_flag, &_help, "Print help", "" }
  49.     
  50.   };
  51.   int num_args = sizeof(args) / sizeof(args[0]);
  52.   int optind = 0;
  53.   char desc[] = 
  54.     "hostname:portn"
  55.     "This program will connect to the mgmsrv of a NDB cluster.n"
  56.     "It will then wait for all nodes to be started, then restart node(s)n"
  57.     "and wait for all to restart inbetween. It will do this n"
  58.     "loop number of timesn";
  59.   if(getarg(args, num_args, argc, argv, &optind) || _help) {
  60.     arg_printusage(args, num_args, argv[0], desc);
  61.     return NDBT_ProgramExit(NDBT_WRONGARGS);
  62.   }
  63.   _hostName = argv[optind];
  64.   
  65.   NdbRestarts restarts(_hostName);
  66.   NdbRestarter restarter(_hostName);
  67.   
  68.   const char* restartName = "";
  69.   if (_multiple){
  70.     if (_master){
  71.       restartName = "TwoMasterNodeFailure";
  72.     }
  73.     else {
  74.       // Restart 50 percent of nodes
  75.       restartName = "FiftyPercentFail";
  76.     }
  77.   }
  78.   else if (_master){
  79.     restartName = "RestartMasterNodeError";
  80.   }else { 
  81.     if (_error_insert)
  82.       restartName = "RestartRandomNodeError";
  83.     else if (_initial)
  84.       restartName = "RestartRandomNodeInitial";
  85.     else      
  86.       restartName = "RestartRandomNode";
  87.   }
  88.   ndbout << "Performing " << restartName << endl;
  89.   int result = NDBT_OK;
  90.   int l = 0;
  91.   while (_loops == 0 || l<_loops){
  92.     g_info << "Waiting for cluster to start" << endl;
  93.     while (restarter.waitClusterStarted(1) != 0){
  94.       //g_warning << "Ndb failed to start in 2 minutes" << endl;
  95.     }
  96.     
  97.     int seconds = _wait;
  98.     if(seconds==0) {
  99.       // Create random value, default 120 secs
  100.       seconds = (rand() % _maxwait) + 1; 
  101.     }
  102.     g_info << "Waiting for " << seconds << "(" << _maxwait 
  103.    << ") secs " << endl;
  104.     NdbSleep_SecSleep(seconds);
  105.     g_info << l << ": Restarting node(s) " << endl;
  106.     if (restarts.executeRestart(restartName) != 0){
  107.       result = NDBT_FAILED;
  108.       break;
  109.     }
  110.     l++;
  111.   }
  112.   return NDBT_ProgramExit(NDBT_OK);
  113. }