Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
930f5cc2
Commit
930f5cc2
authored
Apr 17, 2007
by
jonas@perch.ndb.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ndb -
refactor testSRBank and create new class NdbMixRestarter
parent
ee944816
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
468 additions
and
238 deletions
+468
-238
storage/ndb/test/include/NdbMixRestarter.hpp
storage/ndb/test/include/NdbMixRestarter.hpp
+74
-0
storage/ndb/test/ndbapi/testSRBank.cpp
storage/ndb/test/ndbapi/testSRBank.cpp
+81
-237
storage/ndb/test/src/Makefile.am
storage/ndb/test/src/Makefile.am
+1
-1
storage/ndb/test/src/NDBT_Test.cpp
storage/ndb/test/src/NDBT_Test.cpp
+4
-0
storage/ndb/test/src/NdbMixRestarter.cpp
storage/ndb/test/src/NdbMixRestarter.cpp
+308
-0
No files found.
storage/ndb/test/include/NdbMixRestarter.hpp
0 → 100644
View file @
930f5cc2
/* 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; version 2 of the License.
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 */
#ifndef NDBT_MIX_RESTARTER_HPP
#define NDBT_MIX_RESTARTER_HPP
#include <mgmapi.h>
#include <Vector.hpp>
#include <BaseString.hpp>
#include "NdbRestarter.hpp"
#include "NDBT_Test.hpp"
#define NMR_SR "SR"
#define NMR_SR_THREADS "SR_ThreadCount"
#define NMR_SR_THREADS_STOPPED "SR_ThreadsStoppedCount"
#define NMR_SR_VALIDATE_THREADS "SR_ValidateThreadCount"
#define NMR_SR_VALIDATE_THREADS_DONE "SR_ValidateThreadsDoneCount"
class
NdbMixRestarter
:
public
NdbRestarter
{
public:
enum
RestartTypeMask
{
RTM_RestartCluster
=
0x01
,
RTM_RestartNode
=
0x02
,
RTM_RestartNodeInitial
=
0x04
,
RTM_StopNode
=
0x08
,
RTM_StopNodeInitial
=
0x10
,
RTM_StartNode
=
0x20
,
RTM_COUNT
=
6
,
RTM_ALL
=
0xFF
,
RTM_SR
=
RTM_RestartCluster
,
RTM_NR
=
0x2
|
0x4
|
0x8
|
0x10
|
0x20
};
enum
SR_State
{
SR_RUNNING
=
0
,
SR_STOPPING
=
1
,
SR_STOPPED
=
2
,
SR_VALIDATING
=
3
};
NdbMixRestarter
(
const
char
*
_addr
=
0
);
~
NdbMixRestarter
();
void
setRestartTypeMask
(
Uint32
mask
);
int
runUntilStopped
(
NDBT_Context
*
ctx
,
NDBT_Step
*
step
,
Uint32
freq
);
int
runPeriod
(
NDBT_Context
*
ctx
,
NDBT_Step
*
step
,
Uint32
time
,
Uint32
freq
);
int
init
(
NDBT_Context
*
ctx
,
NDBT_Step
*
step
);
int
dostep
(
NDBT_Context
*
ctx
,
NDBT_Step
*
step
);
int
finish
(
NDBT_Context
*
ctx
,
NDBT_Step
*
step
);
private:
Uint32
m_mask
;
Vector
<
ndb_mgm_node_state
>
m_nodes
;
int
restart_cluster
(
NDBT_Context
*
ctx
,
NDBT_Step
*
step
,
bool
abort
=
true
);
};
#endif
storage/ndb/test/ndbapi/testSRBank.cpp
View file @
930f5cc2
This diff is collapsed.
Click to expand it.
storage/ndb/test/src/Makefile.am
View file @
930f5cc2
...
...
@@ -24,7 +24,7 @@ libNDBT_a_SOURCES = \
NdbRestarter.cpp NdbRestarts.cpp NDBT_Output.cpp
\
NdbBackup.cpp NdbConfig.cpp NdbGrep.cpp NDBT_Table.cpp
\
NdbSchemaCon.cpp NdbSchemaOp.cpp getarg.c
\
CpcClient.cpp
CpcClient.cpp
NdbMixRestarter.cpp
INCLUDES_LOC
=
-I
$(top_srcdir)
/storage/ndb/src/common/mgmcommon
-I
$(top_srcdir)
/storage/ndb/include/mgmcommon
-I
$(top_srcdir)
/storage/ndb/include/kernel
-I
$(top_srcdir)
/storage/ndb/src/mgmapi
...
...
storage/ndb/test/src/NDBT_Test.cpp
View file @
930f5cc2
...
...
@@ -146,8 +146,10 @@ void NDBT_Context::setProperty(const char* _name, Uint32 _val){
NdbMutex_Lock
(
propertyMutexPtr
);
const
bool
b
=
props
.
put
(
_name
,
_val
,
true
);
assert
(
b
==
true
);
NdbCondition_Broadcast
(
propertyCondPtr
);
NdbMutex_Unlock
(
propertyMutexPtr
);
}
void
NDBT_Context
::
decProperty
(
const
char
*
name
){
NdbMutex_Lock
(
propertyMutexPtr
);
...
...
@@ -159,6 +161,7 @@ NDBT_Context::decProperty(const char * name){
NdbCondition_Broadcast
(
propertyCondPtr
);
NdbMutex_Unlock
(
propertyMutexPtr
);
}
void
NDBT_Context
::
incProperty
(
const
char
*
name
){
NdbMutex_Lock
(
propertyMutexPtr
);
...
...
@@ -173,6 +176,7 @@ void NDBT_Context::setProperty(const char* _name, const char* _val){
NdbMutex_Lock
(
propertyMutexPtr
);
const
bool
b
=
props
.
put
(
_name
,
_val
);
assert
(
b
==
true
);
NdbCondition_Broadcast
(
propertyCondPtr
);
NdbMutex_Unlock
(
propertyMutexPtr
);
}
...
...
storage/ndb/test/src/NdbMixRestarter.cpp
0 → 100644
View file @
930f5cc2
/* 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; version 2 of the License.
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 "NdbMixRestarter.hpp"
NdbMixRestarter
::
NdbMixRestarter
(
const
char
*
_addr
)
:
NdbRestarter
(
_addr
),
m_mask
(
~
(
Uint32
)
0
)
{
}
NdbMixRestarter
::~
NdbMixRestarter
()
{
}
#define CHECK(b) if (!(b)) { \
ndbout << "ERR: "<< step->getName() \
<< " failed on line " << __LINE__ << endl; \
result = NDBT_FAILED; \
continue; }
int
NdbMixRestarter
::
restart_cluster
(
NDBT_Context
*
ctx
,
NDBT_Step
*
step
,
bool
stopabort
)
{
int
timeout
=
180
;
int
result
=
NDBT_OK
;
do
{
ctx
->
setProperty
(
NMR_SR_THREADS_STOPPED
,
(
Uint32
)
0
);
ctx
->
setProperty
(
NMR_SR_VALIDATE_THREADS_DONE
,
(
Uint32
)
0
);
ndbout
<<
" -- Shutting down "
<<
endl
;
ctx
->
setProperty
(
NMR_SR
,
NdbMixRestarter
::
SR_STOPPING
);
CHECK
(
restartAll
(
false
,
true
,
stopabort
)
==
0
);
ctx
->
setProperty
(
NMR_SR
,
NdbMixRestarter
::
SR_STOPPED
);
CHECK
(
waitClusterNoStart
(
timeout
)
==
0
);
Uint32
cnt
=
ctx
->
getProperty
(
NMR_SR_THREADS
);
Uint32
curr
=
ctx
->
getProperty
(
NMR_SR_THREADS_STOPPED
);
while
(
curr
!=
cnt
&&
!
ctx
->
isTestStopped
())
{
if
(
curr
>
cnt
)
{
ndbout_c
(
"stopping: curr: %d cnt: %d"
,
curr
,
cnt
);
abort
();
}
NdbSleep_MilliSleep
(
100
);
curr
=
ctx
->
getProperty
(
NMR_SR_THREADS_STOPPED
);
}
CHECK
(
ctx
->
isTestStopped
()
==
false
);
CHECK
(
startAll
()
==
0
);
CHECK
(
waitClusterStarted
(
timeout
)
==
0
);
cnt
=
ctx
->
getProperty
(
NMR_SR_VALIDATE_THREADS
);
if
(
cnt
)
{
ndbout
<<
" -- Validating starts "
<<
endl
;
ctx
->
setProperty
(
NMR_SR_VALIDATE_THREADS_DONE
,
(
Uint32
)
0
);
ctx
->
setProperty
(
NMR_SR
,
NdbMixRestarter
::
SR_VALIDATING
);
curr
=
ctx
->
getProperty
(
NMR_SR_VALIDATE_THREADS_DONE
);
while
(
curr
!=
cnt
&&
!
ctx
->
isTestStopped
())
{
if
(
curr
>
cnt
)
{
ndbout_c
(
"validating: curr: %d cnt: %d"
,
curr
,
cnt
);
abort
();
}
NdbSleep_MilliSleep
(
100
);
curr
=
ctx
->
getProperty
(
NMR_SR_VALIDATE_THREADS_DONE
);
}
ndbout
<<
" -- Validating complete "
<<
endl
;
}
CHECK
(
ctx
->
isTestStopped
()
==
false
);
ctx
->
setProperty
(
NMR_SR
,
NdbMixRestarter
::
SR_RUNNING
);
}
while
(
0
);
return
result
;
}
static
ndb_mgm_node_state
*
select_node_to_stop
(
Vector
<
ndb_mgm_node_state
>&
nodes
)
{
Uint32
i
,
j
;
Vector
<
ndb_mgm_node_state
*>
alive_nodes
;
for
(
i
=
0
;
i
<
nodes
.
size
();
i
++
)
{
ndb_mgm_node_state
*
node
=
&
nodes
[
i
];
if
(
node
->
node_status
==
NDB_MGM_NODE_STATUS_STARTED
)
alive_nodes
.
push_back
(
node
);
}
Vector
<
ndb_mgm_node_state
*>
victims
;
// Remove those with one in node group
for
(
i
=
0
;
i
<
alive_nodes
.
size
();
i
++
)
{
int
group
=
alive_nodes
[
i
]
->
node_group
;
for
(
j
=
0
;
j
<
alive_nodes
.
size
();
j
++
)
{
if
(
i
!=
j
&&
alive_nodes
[
j
]
->
node_group
==
group
)
{
victims
.
push_back
(
alive_nodes
[
i
]);
break
;
}
}
}
if
(
victims
.
size
())
{
int
victim
=
rand
()
%
victims
.
size
();
return
victims
[
victim
];
}
else
{
return
0
;
}
}
static
ndb_mgm_node_state
*
select_node_to_start
(
Vector
<
ndb_mgm_node_state
>&
nodes
)
{
Uint32
i
;
Vector
<
ndb_mgm_node_state
*>
victims
;
for
(
i
=
0
;
i
<
nodes
.
size
();
i
++
)
{
ndb_mgm_node_state
*
node
=
&
nodes
[
i
];
if
(
node
->
node_status
==
NDB_MGM_NODE_STATUS_NOT_STARTED
)
victims
.
push_back
(
node
);
}
if
(
victims
.
size
())
{
int
victim
=
rand
()
%
victims
.
size
();
return
victims
[
victim
];
}
else
{
return
0
;
}
}
void
NdbMixRestarter
::
setRestartTypeMask
(
Uint32
mask
)
{
m_mask
=
mask
;
}
int
NdbMixRestarter
::
runUntilStopped
(
NDBT_Context
*
ctx
,
NDBT_Step
*
step
,
Uint32
freq
)
{
if
(
init
(
ctx
,
step
))
return
NDBT_FAILED
;
while
(
!
ctx
->
isTestStopped
())
{
if
(
dostep
(
ctx
,
step
))
return
NDBT_FAILED
;
NdbSleep_SecSleep
(
freq
);
}
if
(
!
finish
(
ctx
,
step
))
return
NDBT_FAILED
;
return
NDBT_OK
;
}
int
NdbMixRestarter
::
runPeriod
(
NDBT_Context
*
ctx
,
NDBT_Step
*
step
,
Uint32
period
,
Uint32
freq
)
{
if
(
init
(
ctx
,
step
))
return
NDBT_FAILED
;
Uint32
stop
=
time
(
0
)
+
period
;
while
(
!
ctx
->
isTestStopped
()
&&
(
time
(
0
)
<
stop
))
{
if
(
dostep
(
ctx
,
step
))
{
return
NDBT_FAILED
;
}
NdbSleep_SecSleep
(
freq
);
}
if
(
finish
(
ctx
,
step
))
{
return
NDBT_FAILED
;
}
ctx
->
stopTest
();
return
NDBT_OK
;
}
int
NdbMixRestarter
::
init
(
NDBT_Context
*
ctx
,
NDBT_Step
*
step
)
{
waitClusterStarted
();
m_nodes
=
ndbNodes
;
return
0
;
}
int
NdbMixRestarter
::
dostep
(
NDBT_Context
*
ctx
,
NDBT_Step
*
step
)
{
ndb_mgm_node_state
*
node
=
0
;
int
action
;
loop:
while
(((
action
=
(
1
<<
(
rand
()
%
RTM_COUNT
)))
&
m_mask
)
==
0
);
switch
(
action
){
case
RTM_RestartCluster
:
if
(
restart_cluster
(
ctx
,
step
))
return
NDBT_FAILED
;
for
(
Uint32
i
=
0
;
i
<
m_nodes
.
size
();
i
++
)
m_nodes
[
i
].
node_status
=
NDB_MGM_NODE_STATUS_STARTED
;
break
;
case
RTM_RestartNode
:
case
RTM_RestartNodeInitial
:
case
RTM_StopNode
:
case
RTM_StopNodeInitial
:
{
if
((
node
=
select_node_to_stop
(
m_nodes
))
==
0
)
goto
loop
;
if
(
action
==
RTM_RestartNode
||
action
==
RTM_RestartNodeInitial
)
ndbout
<<
"Restarting "
<<
node
->
node_id
<<
endl
;
else
ndbout
<<
"Stopping "
<<
node
->
node_id
<<
endl
;
bool
initial
=
action
==
RTM_RestartNodeInitial
||
action
==
RTM_StopNodeInitial
;
if
(
restartOneDbNode
(
node
->
node_id
,
initial
,
true
,
true
))
return
NDBT_FAILED
;
if
(
waitNodesNoStart
(
&
node
->
node_id
,
1
))
return
NDBT_FAILED
;
node
->
node_status
=
NDB_MGM_NODE_STATUS_NOT_STARTED
;
if
(
action
==
RTM_StopNode
||
action
==
RTM_StopNodeInitial
)
break
;
else
goto
start
;
}
case
RTM_StartNode
:
if
((
node
=
select_node_to_start
(
m_nodes
))
==
0
)
goto
loop
;
start:
ndbout
<<
"Starting "
<<
node
->
node_id
<<
endl
;
if
(
startNodes
(
&
node
->
node_id
,
1
))
return
NDBT_FAILED
;
if
(
waitNodesStarted
(
&
node
->
node_id
,
1
))
return
NDBT_FAILED
;
node
->
node_status
=
NDB_MGM_NODE_STATUS_STARTED
;
break
;
}
return
NDBT_OK
;
}
int
NdbMixRestarter
::
finish
(
NDBT_Context
*
ctx
,
NDBT_Step
*
step
)
{
Vector
<
int
>
not_started
;
{
ndb_mgm_node_state
*
node
=
0
;
while
((
node
=
select_node_to_start
(
m_nodes
)))
{
not_started
.
push_back
(
node
->
node_id
);
node
->
node_status
=
NDB_MGM_NODE_STATUS_STARTED
;
}
}
if
(
not_started
.
size
())
{
ndbout
<<
"Starting stopped nodes "
<<
endl
;
if
(
startNodes
(
not_started
.
getBase
(),
not_started
.
size
()))
return
NDBT_FAILED
;
if
(
waitClusterStarted
())
return
NDBT_FAILED
;
}
return
NDBT_OK
;
}
template
class
Vector
<
ndb_mgm_node_state
*
>;
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment