mirror of
https://github.com/MariaDB/server.git
synced 2025-01-25 00:04:33 +01:00
22b56d2354
no need for dvlags to have DEFINE_CXA_PURE_VIRTUAL anymore aligned the parsing of connectstring, retries for connect, allocation of nodeid for all cluster nodes removed all dependencies of LocalConfig, except for mgmapi internals enabled multiple management servrs to fetch data configurations from eachother client/Makefile.am: changed mysqladmin.c to mysqladmin.cc client/mysqladmin.cc: changed mysqladmin.c to mysqladmin.cc configure.in: no need for dvlags to have DEFINE_CXA_PURE_VIRTUAL anymore ndb/include/mgmapi/mgmapi.h: aligned the parsing of connectstring, retries for connect, allocation of nodeid for all cluster nodes removed all dependencies of LocalConfig, except for mgmapi internals ndb/include/mgmcommon/ConfigRetriever.hpp: aligned the parsing of connectstring, retries for connect, allocation of nodeid for all cluster nodes removed all dependencies of LocalConfig, except for mgmapi internals ndb/include/ndbapi/ndb_cluster_connection.hpp: aligned the parsing of connectstring, retries for connect, allocation of nodeid for all cluster nodes removed all dependencies of LocalConfig, except for mgmapi internals ndb/src/common/mgmcommon/ConfigRetriever.cpp: aligned the parsing of connectstring, retries for connect, allocation of nodeid for all cluster nodes removed all dependencies of LocalConfig, except for mgmapi internals ndb/src/kernel/main.cpp: aligned the parsing of connectstring, retries for connect, allocation of nodeid for all cluster nodes removed all dependencies of LocalConfig, except for mgmapi internals ndb/src/kernel/vm/Configuration.cpp: aligned the parsing of connectstring, retries for connect, allocation of nodeid for all cluster nodes removed all dependencies of LocalConfig, except for mgmapi internals changed to config setting to always use noOfMetaTables to make sure we don't overflow arrays ndb/src/kernel/vm/Configuration.hpp: aligned the parsing of connectstring, retries for connect, allocation of nodeid for all cluster nodes removed all dependencies of LocalConfig, except for mgmapi internals ndb/src/mgmapi/LocalConfig.cpp: aligned the parsing of connectstring, retries for connect, allocation of nodeid for all cluster nodes removed all dependencies of LocalConfig, except for mgmapi internals ndb/src/mgmapi/LocalConfig.hpp: aligned the parsing of connectstring, retries for connect, allocation of nodeid for all cluster nodes removed all dependencies of LocalConfig, except for mgmapi internals ndb/src/mgmapi/mgmapi.cpp: aligned the parsing of connectstring, retries for connect, allocation of nodeid for all cluster nodes removed all dependencies of LocalConfig, except for mgmapi internals ndb/src/mgmclient/CommandInterpreter.cpp: aligned the parsing of connectstring, retries for connect, allocation of nodeid for all cluster nodes removed all dependencies of LocalConfig, except for mgmapi internals ndb/src/mgmclient/main.cpp: aligned the parsing of connectstring, retries for connect, allocation of nodeid for all cluster nodes removed all dependencies of LocalConfig, except for mgmapi internals ndb/src/mgmclient/ndb_mgmclient.hpp: aligned the parsing of connectstring, retries for connect, allocation of nodeid for all cluster nodes removed all dependencies of LocalConfig, except for mgmapi internals ndb/src/mgmclient/ndb_mgmclient.h: aligned the parsing of connectstring, retries for connect, allocation of nodeid for all cluster nodes removed all dependencies of LocalConfig, except for mgmapi internals ndb/src/mgmsrv/MgmtSrvr.cpp: aligned the parsing of connectstring, retries for connect, allocation of nodeid for all cluster nodes removed all dependencies of LocalConfig, except for mgmapi internals enabled multiple management servrs to fetch data configurations from eachother ndb/src/mgmsrv/MgmtSrvr.hpp: aligned the parsing of connectstring, retries for connect, allocation of nodeid for all cluster nodes removed all dependencies of LocalConfig, except for mgmapi internals ndb/src/mgmsrv/MgmtSrvrConfig.cpp: aligned the parsing of connectstring, retries for connect, allocation of nodeid for all cluster nodes removed all dependencies of LocalConfig, except for mgmapi internals ndb/src/mgmsrv/main.cpp: aligned the parsing of connectstring, retries for connect, allocation of nodeid for all cluster nodes removed all dependencies of LocalConfig, except for mgmapi internals ndb/src/ndbapi/ndb_cluster_connection.cpp: aligned the parsing of connectstring, retries for connect, allocation of nodeid for all cluster nodes removed all dependencies of LocalConfig, except for mgmapi internals ndb/tools/waiter.cpp: aligned the parsing of connectstring, retries for connect, allocation of nodeid for all cluster nodes removed all dependencies of LocalConfig, except for mgmapi internals
313 lines
8.1 KiB
C++
313 lines
8.1 KiB
C++
/* Copyright (C) 2003 MySQL AB
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
|
|
|
|
|
|
#include <ndb_global.h>
|
|
#include <ndb_opts.h>
|
|
|
|
#include <mgmapi.h>
|
|
#include <NdbMain.h>
|
|
#include <NdbOut.hpp>
|
|
#include <NdbSleep.h>
|
|
#include <kernel/ndb_limits.h>
|
|
|
|
#include <NDBT.hpp>
|
|
|
|
int
|
|
waitClusterStatus(const char* _addr, ndb_mgm_node_status _status,
|
|
unsigned int _timeout);
|
|
|
|
static const char* opt_connect_str= 0;
|
|
static int _no_contact = 0;
|
|
static int _timeout = 120;
|
|
static struct my_option my_long_options[] =
|
|
{
|
|
NDB_STD_OPTS("ndb_desc"),
|
|
{ "no-contact", 'n', "Wait for cluster no contact",
|
|
(gptr*) &_no_contact, (gptr*) &_no_contact, 0,
|
|
GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0 },
|
|
{ "timeout", 't', "Timeout to wait",
|
|
(gptr*) &_timeout, (gptr*) &_timeout, 0,
|
|
GET_INT, REQUIRED_ARG, 120, 0, 0, 0, 0, 0 },
|
|
{ 0, 0, 0, 0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0}
|
|
};
|
|
static void print_version()
|
|
{
|
|
printf("MySQL distrib %s, for %s (%s)\n",MYSQL_SERVER_VERSION,SYSTEM_TYPE,MACHINE_TYPE);
|
|
}
|
|
static void usage()
|
|
{
|
|
print_version();
|
|
my_print_help(my_long_options);
|
|
my_print_variables(my_long_options);
|
|
}
|
|
static my_bool
|
|
get_one_option(int optid, const struct my_option *opt __attribute__((unused)),
|
|
char *argument)
|
|
{
|
|
switch (optid) {
|
|
case '#':
|
|
DBUG_PUSH(argument ? argument : "d:t:O,/tmp/ndb_drop_table.trace");
|
|
break;
|
|
case 'V':
|
|
print_version();
|
|
exit(0);
|
|
case '?':
|
|
usage();
|
|
exit(0);
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
int main(int argc, char** argv){
|
|
NDB_INIT(argv[0]);
|
|
const char *load_default_groups[]= { "ndb_tools",0 };
|
|
load_defaults("my",load_default_groups,&argc,&argv);
|
|
const char* _hostName = NULL;
|
|
int ho_error;
|
|
if ((ho_error=handle_options(&argc, &argv, my_long_options, get_one_option)))
|
|
return NDBT_ProgramExit(NDBT_WRONGARGS);
|
|
|
|
char buf[255];
|
|
_hostName = argv[0];
|
|
|
|
if (_hostName == 0)
|
|
_hostName= opt_connect_str;
|
|
|
|
if (_no_contact) {
|
|
if (waitClusterStatus(_hostName, NDB_MGM_NODE_STATUS_NO_CONTACT, _timeout) != 0)
|
|
return NDBT_ProgramExit(NDBT_FAILED);
|
|
} else if (waitClusterStatus(_hostName, NDB_MGM_NODE_STATUS_STARTED, _timeout) != 0)
|
|
return NDBT_ProgramExit(NDBT_FAILED);
|
|
|
|
return NDBT_ProgramExit(NDBT_OK);
|
|
}
|
|
|
|
#define MGMERR(h) \
|
|
ndbout << "latest_error="<<ndb_mgm_get_latest_error(h) \
|
|
<< ", line="<<ndb_mgm_get_latest_error_line(h) \
|
|
<< endl;
|
|
|
|
NdbMgmHandle handle= NULL;
|
|
|
|
Vector<ndb_mgm_node_state> ndbNodes;
|
|
Vector<ndb_mgm_node_state> mgmNodes;
|
|
Vector<ndb_mgm_node_state> apiNodes;
|
|
|
|
int
|
|
getStatus(){
|
|
int retries = 0;
|
|
struct ndb_mgm_cluster_state * status;
|
|
struct ndb_mgm_node_state * node;
|
|
|
|
ndbNodes.clear();
|
|
mgmNodes.clear();
|
|
apiNodes.clear();
|
|
|
|
while(retries < 10){
|
|
status = ndb_mgm_get_status(handle);
|
|
if (status == NULL){
|
|
ndbout << "status==NULL, retries="<<retries<<endl;
|
|
MGMERR(handle);
|
|
retries++;
|
|
continue;
|
|
}
|
|
int count = status->no_of_nodes;
|
|
for (int i = 0; i < count; i++){
|
|
node = &status->node_states[i];
|
|
switch(node->node_type){
|
|
case NDB_MGM_NODE_TYPE_NDB:
|
|
ndbNodes.push_back(*node);
|
|
break;
|
|
case NDB_MGM_NODE_TYPE_MGM:
|
|
mgmNodes.push_back(*node);
|
|
break;
|
|
case NDB_MGM_NODE_TYPE_API:
|
|
apiNodes.push_back(*node);
|
|
break;
|
|
default:
|
|
if(node->node_status == NDB_MGM_NODE_STATUS_UNKNOWN ||
|
|
node->node_status == NDB_MGM_NODE_STATUS_NO_CONTACT){
|
|
retries++;
|
|
ndbNodes.clear();
|
|
mgmNodes.clear();
|
|
apiNodes.clear();
|
|
free(status);
|
|
status = NULL;
|
|
count = 0;
|
|
|
|
ndbout << "kalle"<< endl;
|
|
break;
|
|
}
|
|
abort();
|
|
break;
|
|
}
|
|
}
|
|
if(status == 0){
|
|
ndbout << "status == 0" << endl;
|
|
continue;
|
|
}
|
|
free(status);
|
|
return 0;
|
|
}
|
|
|
|
g_err << "getStatus failed" << endl;
|
|
return -1;
|
|
}
|
|
|
|
int
|
|
waitClusterStatus(const char* _addr,
|
|
ndb_mgm_node_status _status,
|
|
unsigned int _timeout)
|
|
{
|
|
int _startphase = -1;
|
|
|
|
int _nodes[MAX_NDB_NODES];
|
|
int _num_nodes = 0;
|
|
|
|
handle = ndb_mgm_create_handle();
|
|
if (handle == NULL){
|
|
g_err << "handle == NULL" << endl;
|
|
return -1;
|
|
}
|
|
g_info << "Connecting to mgmsrv at " << _addr << endl;
|
|
if (ndb_mgm_set_connectstring(handle, _addr))
|
|
{
|
|
MGMERR(handle);
|
|
g_err << "Connectstring " << _addr << " invalid" << endl;
|
|
return -1;
|
|
}
|
|
if (ndb_mgm_connect(handle,0,0,1)) {
|
|
MGMERR(handle);
|
|
g_err << "Connection to " << _addr << " failed" << endl;
|
|
return -1;
|
|
}
|
|
|
|
if (getStatus() != 0)
|
|
return -1;
|
|
|
|
// Collect all nodes into nodes
|
|
for (size_t i = 0; i < ndbNodes.size(); i++){
|
|
_nodes[i] = ndbNodes[i].node_id;
|
|
_num_nodes++;
|
|
}
|
|
|
|
unsigned int attempts = 0;
|
|
unsigned int resetAttempts = 0;
|
|
const unsigned int MAX_RESET_ATTEMPTS = 10;
|
|
bool allInState = false;
|
|
while (allInState == false){
|
|
if (_timeout > 0 && attempts > _timeout){
|
|
/**
|
|
* Timeout has expired waiting for the nodes to enter
|
|
* the state we want
|
|
*/
|
|
bool waitMore = false;
|
|
/**
|
|
* Make special check if we are waiting for
|
|
* cluster to become started
|
|
*/
|
|
if(_status == NDB_MGM_NODE_STATUS_STARTED){
|
|
waitMore = true;
|
|
/**
|
|
* First check if any node is not starting
|
|
* then it's no idea to wait anymore
|
|
*/
|
|
for (size_t n = 0; n < ndbNodes.size(); n++){
|
|
if (ndbNodes[n].node_status != NDB_MGM_NODE_STATUS_STARTED &&
|
|
ndbNodes[n].node_status != NDB_MGM_NODE_STATUS_STARTING)
|
|
waitMore = false;
|
|
|
|
}
|
|
}
|
|
|
|
if (!waitMore || resetAttempts > MAX_RESET_ATTEMPTS){
|
|
g_err << "waitNodeState("
|
|
<< ndb_mgm_get_node_status_string(_status)
|
|
<<", "<<_startphase<<")"
|
|
<< " timeout after " << attempts <<" attemps" << endl;
|
|
return -1;
|
|
}
|
|
|
|
g_err << "waitNodeState("
|
|
<< ndb_mgm_get_node_status_string(_status)
|
|
<<", "<<_startphase<<")"
|
|
<< " resetting number of attempts "
|
|
<< resetAttempts << endl;
|
|
attempts = 0;
|
|
resetAttempts++;
|
|
|
|
}
|
|
|
|
allInState = true;
|
|
if (getStatus() != 0){
|
|
g_err << "getStatus != 0" << endl;
|
|
return -1;
|
|
}
|
|
|
|
// ndbout << "waitNodeState; _num_nodes = " << _num_nodes << endl;
|
|
// for (int i = 0; i < _num_nodes; i++)
|
|
// ndbout << " node["<<i<<"] =" <<_nodes[i] << endl;
|
|
|
|
for (int i = 0; i < _num_nodes; i++){
|
|
ndb_mgm_node_state* ndbNode = NULL;
|
|
for (size_t n = 0; n < ndbNodes.size(); n++){
|
|
if (ndbNodes[n].node_id == _nodes[i])
|
|
ndbNode = &ndbNodes[n];
|
|
}
|
|
|
|
if(ndbNode == NULL){
|
|
allInState = false;
|
|
continue;
|
|
}
|
|
|
|
g_info << "State node " << ndbNode->node_id << " "
|
|
<< ndb_mgm_get_node_status_string(ndbNode->node_status)<< endl;
|
|
|
|
assert(ndbNode != NULL);
|
|
|
|
if(_status == NDB_MGM_NODE_STATUS_STARTING &&
|
|
((ndbNode->node_status == NDB_MGM_NODE_STATUS_STARTING &&
|
|
ndbNode->start_phase >= _startphase) ||
|
|
(ndbNode->node_status == NDB_MGM_NODE_STATUS_STARTED)))
|
|
continue;
|
|
|
|
if (_status == NDB_MGM_NODE_STATUS_STARTING){
|
|
g_info << "status = "
|
|
<< ndb_mgm_get_node_status_string(ndbNode->node_status)
|
|
<<", start_phase="<<ndbNode->start_phase<<endl;
|
|
if (ndbNode->node_status != _status) {
|
|
if (ndbNode->node_status < _status)
|
|
allInState = false;
|
|
else
|
|
g_info << "node_status(" << (unsigned)ndbNode->node_status
|
|
<< ") != _status("<< (unsigned)_status << ")" <<endl;
|
|
} else if (ndbNode->start_phase < _startphase)
|
|
allInState = false;
|
|
} else {
|
|
if (ndbNode->node_status != _status)
|
|
allInState = false;
|
|
}
|
|
}
|
|
g_info << "Waiting for cluster enter state "
|
|
<< ndb_mgm_get_node_status_string(_status)<< endl;
|
|
NdbSleep_SecSleep(1);
|
|
attempts++;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
template class Vector<ndb_mgm_node_state>;
|