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
d50539b6
Commit
d50539b6
authored
Mar 27, 2007
by
jonas@perch.ndb.mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge perch.ndb.mysql.com:/home/jonas/src/51-telco-gca
into perch.ndb.mysql.com:/home/jonas/src/mysql-5.1-new-ndb
parents
99238e55
e5faf16b
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
130 additions
and
51 deletions
+130
-51
storage/ndb/include/kernel/signaldata/StartPerm.hpp
storage/ndb/include/kernel/signaldata/StartPerm.hpp
+1
-0
storage/ndb/src/kernel/blocks/ERROR_codes.txt
storage/ndb/src/kernel/blocks/ERROR_codes.txt
+3
-1
storage/ndb/src/kernel/blocks/dbdih/Dbdih.hpp
storage/ndb/src/kernel/blocks/dbdih/Dbdih.hpp
+0
-1
storage/ndb/src/kernel/blocks/dbdih/DbdihMain.cpp
storage/ndb/src/kernel/blocks/dbdih/DbdihMain.cpp
+46
-45
storage/ndb/src/kernel/blocks/dbtc/DbtcMain.cpp
storage/ndb/src/kernel/blocks/dbtc/DbtcMain.cpp
+13
-0
storage/ndb/src/kernel/blocks/suma/Suma.cpp
storage/ndb/src/kernel/blocks/suma/Suma.cpp
+10
-4
storage/ndb/test/ndbapi/testNodeRestart.cpp
storage/ndb/test/ndbapi/testNodeRestart.cpp
+53
-0
storage/ndb/test/run-test/daily-basic-tests.txt
storage/ndb/test/run-test/daily-basic-tests.txt
+4
-0
No files found.
storage/ndb/include/kernel/signaldata/StartPerm.hpp
View file @
d50539b6
...
@@ -67,6 +67,7 @@ private:
...
@@ -67,6 +67,7 @@ private:
enum
ErrorCode
enum
ErrorCode
{
{
ZNODE_ALREADY_STARTING_ERROR
=
305
,
ZNODE_ALREADY_STARTING_ERROR
=
305
,
ZNODE_START_DISALLOWED_ERROR
=
309
,
InitialStartRequired
=
320
InitialStartRequired
=
320
};
};
};
};
...
...
storage/ndb/src/kernel/blocks/ERROR_codes.txt
View file @
d50539b6
...
@@ -6,7 +6,7 @@ Next DBTUP 4029
...
@@ -6,7 +6,7 @@ Next DBTUP 4029
Next DBLQH 5045
Next DBLQH 5045
Next DBDICT 6007
Next DBDICT 6007
Next DBDIH 7183
Next DBDIH 7183
Next DBTC 80
39
Next DBTC 80
40
Next CMVMI 9000
Next CMVMI 9000
Next BACKUP 10038
Next BACKUP 10038
Next DBUTIL 11002
Next DBUTIL 11002
...
@@ -327,6 +327,8 @@ Test Crashes in handling node restarts
...
@@ -327,6 +327,8 @@ Test Crashes in handling node restarts
7170: Crash when receiving START_PERMREF (InitialStartRequired)
7170: Crash when receiving START_PERMREF (InitialStartRequired)
8039: DBTC delay INCL_NODECONF and kill starting node
7174: Crash starting node before sending DICT_LOCK_REQ
7174: Crash starting node before sending DICT_LOCK_REQ
7175: Master sends one fake START_PERMREF (ZNODE_ALREADY_STARTING_ERROR)
7175: Master sends one fake START_PERMREF (ZNODE_ALREADY_STARTING_ERROR)
7176: Slave NR pretends master does not support DICT lock (rolling upgrade)
7176: Slave NR pretends master does not support DICT lock (rolling upgrade)
...
...
storage/ndb/src/kernel/blocks/dbdih/Dbdih.hpp
View file @
d50539b6
...
@@ -74,7 +74,6 @@
...
@@ -74,7 +74,6 @@
#define ZWRONG_FAILURE_NUMBER_ERROR 302
#define ZWRONG_FAILURE_NUMBER_ERROR 302
#define ZWRONG_START_NODE_ERROR 303
#define ZWRONG_START_NODE_ERROR 303
#define ZNO_REPLICA_FOUND_ERROR 304
#define ZNO_REPLICA_FOUND_ERROR 304
#define ZNODE_START_DISALLOWED_ERROR 309
// --------------------------------------
// --------------------------------------
// Codes from LQH
// Codes from LQH
...
...
storage/ndb/src/kernel/blocks/dbdih/DbdihMain.cpp
View file @
d50539b6
...
@@ -1772,7 +1772,8 @@ void Dbdih::execSTART_PERMREF(Signal* signal)
...
@@ -1772,7 +1772,8 @@ void Dbdih::execSTART_PERMREF(Signal* signal)
{
{
jamEntry
();
jamEntry
();
Uint32
errorCode
=
signal
->
theData
[
1
];
Uint32
errorCode
=
signal
->
theData
[
1
];
if
(
errorCode
==
StartPermRef
::
ZNODE_ALREADY_STARTING_ERROR
)
{
if
(
errorCode
==
StartPermRef
::
ZNODE_ALREADY_STARTING_ERROR
||
errorCode
==
StartPermRef
::
ZNODE_START_DISALLOWED_ERROR
)
{
jam
();
jam
();
/*-----------------------------------------------------------------------*/
/*-----------------------------------------------------------------------*/
// The master was busy adding another node. We will wait for a second and
// The master was busy adding another node. We will wait for a second and
...
@@ -2122,49 +2123,49 @@ void Dbdih::execINCL_NODECONF(Signal* signal)
...
@@ -2122,49 +2123,49 @@ void Dbdih::execINCL_NODECONF(Signal* signal)
TstartNode_or_blockref
=
signal
->
theData
[
0
];
TstartNode_or_blockref
=
signal
->
theData
[
0
];
TsendNodeId
=
signal
->
theData
[
1
];
TsendNodeId
=
signal
->
theData
[
1
];
if
(
TstartNode_or_blockref
==
clocallqhblockref
)
{
static
Uint32
blocklist
[]
=
{
jam
();
clocallqhblockref
,
/*-----------------------------------------------------------------------*/
clocaltcblockref
,
// THIS SIGNAL CAME FROM THE LOCAL LQH BLOCK.
cdictblockref
,
// WE WILL NOW SEND INCLUDE TO THE TC BLOCK.
0
,
/*-----------------------------------------------------------------------*/
0
,
signal
->
theData
[
0
]
=
reference
();
0
signal
->
theData
[
1
]
=
c_nodeStartSlave
.
nodeId
;
}
;
sendSignal
(
clocaltcblockref
,
GSN_INCL_NODEREQ
,
signal
,
2
,
JBB
);
blocklist
[
3
]
=
numberToRef
(
BACKUP
,
getOwnNodeId
()
);
return
;
blocklist
[
4
]
=
numberToRef
(
SUMA
,
getOwnNodeId
())
;
}
//if
if
(
TstartNode_or_blockref
==
clocaltcblockref
)
{
Uint32
i
=
0
;
jam
();
for
(
Uint32
i
=
0
;
blocklist
[
i
]
!=
0
;
i
++
)
/*----------------------------------------------------------------------*/
{
// THIS SIGNAL CAME FROM THE LOCAL LQH BLOCK.
if
(
TstartNode_or_blockref
==
blocklist
[
i
])
// WE WILL NOW SEND INCLUDE TO THE DICT BLOCK.
{
/*----------------------------------------------------------------------*/
jam
();
signal
->
theData
[
0
]
=
reference
();
if
(
getNodeStatus
(
c_nodeStartSlave
.
nodeId
)
==
NodeRecord
::
ALIVE
&&
signal
->
theData
[
1
]
=
c_nodeStartSlave
.
nodeId
;
blocklist
[
i
+
1
]
!=
0
)
sendSignal
(
cdictblockref
,
GSN_INCL_NODEREQ
,
signal
,
2
,
JBB
);
{
return
;
/**
}
//if
* Send to next in block list
if
(
TstartNode_or_blockref
==
cdictblockref
)
{
*/
jam
();
jam
();
/*-----------------------------------------------------------------------*/
signal
->
theData
[
0
]
=
reference
();
// THIS SIGNAL CAME FROM THE LOCAL DICT BLOCK. WE WILL NOW SEND CONF TO THE
signal
->
theData
[
1
]
=
c_nodeStartSlave
.
nodeId
;
// BACKUP.
sendSignal
(
blocklist
[
i
+
1
],
GSN_INCL_NODEREQ
,
signal
,
2
,
JBB
);
/*-----------------------------------------------------------------------*/
return
;
signal
->
theData
[
0
]
=
reference
();
}
signal
->
theData
[
1
]
=
c_nodeStartSlave
.
nodeId
;
else
sendSignal
(
BACKUP_REF
,
GSN_INCL_NODEREQ
,
signal
,
2
,
JBB
);
{
/**
// Suma will not send response to this for now, later...
* All done, reply to master
sendSignal
(
SUMA_REF
,
GSN_INCL_NODEREQ
,
signal
,
2
,
JBB
);
*/
return
;
jam
()
;
}
//if
signal
->
theData
[
0
]
=
c_nodeStartSlave
.
nodeId
;
if
(
TstartNode_or_blockref
==
numberToRef
(
BACKUP
,
getOwnNodeId
())){
signal
->
theData
[
1
]
=
cownNodeId
;
jam
(
);
sendSignal
(
cmasterdihref
,
GSN_INCL_NODECONF
,
signal
,
2
,
JBB
);
signal
->
theData
[
0
]
=
c_nodeStartSlave
.
nodeId
;
signal
->
theData
[
1
]
=
cownNodeId
;
c_nodeStartSlave
.
nodeId
=
0
;
sendSignal
(
cmasterdihref
,
GSN_INCL_NODECONF
,
signal
,
2
,
JBB
)
;
return
;
c_nodeStartSlave
.
nodeId
=
0
;
}
return
;
}
}
}
ndbrequire
(
cmasterdihref
=
reference
());
ndbrequire
(
cmasterdihref
=
reference
());
...
@@ -2283,7 +2284,7 @@ void Dbdih::execSTART_INFOREQ(Signal* signal)
...
@@ -2283,7 +2284,7 @@ void Dbdih::execSTART_INFOREQ(Signal* signal)
StartInfoRef
*
const
ref
=
(
StartInfoRef
*
)
&
signal
->
theData
[
0
];
StartInfoRef
*
const
ref
=
(
StartInfoRef
*
)
&
signal
->
theData
[
0
];
ref
->
startingNodeId
=
startNode
;
ref
->
startingNodeId
=
startNode
;
ref
->
sendingNodeId
=
cownNodeId
;
ref
->
sendingNodeId
=
cownNodeId
;
ref
->
errorCode
=
ZNODE_START_DISALLOWED_ERROR
;
ref
->
errorCode
=
StartPermRef
::
ZNODE_START_DISALLOWED_ERROR
;
sendSignal
(
cmasterdihref
,
GSN_START_INFOREF
,
signal
,
sendSignal
(
cmasterdihref
,
GSN_START_INFOREF
,
signal
,
StartInfoRef
::
SignalLength
,
JBB
);
StartInfoRef
::
SignalLength
,
JBB
);
return
;
return
;
...
...
storage/ndb/src/kernel/blocks/dbtc/DbtcMain.cpp
View file @
d50539b6
...
@@ -311,6 +311,19 @@ void Dbtc::execINCL_NODEREQ(Signal* signal)
...
@@ -311,6 +311,19 @@ void Dbtc::execINCL_NODEREQ(Signal* signal)
hostptr
.
p
->
hostStatus
=
HS_ALIVE
;
hostptr
.
p
->
hostStatus
=
HS_ALIVE
;
signal
->
theData
[
0
]
=
cownref
;
signal
->
theData
[
0
]
=
cownref
;
c_alive_nodes
.
set
(
hostptr
.
i
);
c_alive_nodes
.
set
(
hostptr
.
i
);
if
(
ERROR_INSERTED
(
8039
))
{
CLEAR_ERROR_INSERT_VALUE
;
Uint32
save
=
signal
->
theData
[
0
];
signal
->
theData
[
0
]
=
9999
;
sendSignal
(
numberToRef
(
CMVMI
,
hostptr
.
i
),
GSN_NDB_TAMPER
,
signal
,
1
,
JBB
);
signal
->
theData
[
0
]
=
save
;
sendSignalWithDelay
(
tblockref
,
GSN_INCL_NODECONF
,
signal
,
5000
,
1
);
return
;
}
sendSignal
(
tblockref
,
GSN_INCL_NODECONF
,
signal
,
1
,
JBB
);
sendSignal
(
tblockref
,
GSN_INCL_NODECONF
,
signal
,
1
,
JBB
);
}
}
...
...
storage/ndb/src/kernel/blocks/suma/Suma.cpp
View file @
d50539b6
...
@@ -815,17 +815,14 @@ void
...
@@ -815,17 +815,14 @@ void
Suma
::
execINCL_NODEREQ
(
Signal
*
signal
){
Suma
::
execINCL_NODEREQ
(
Signal
*
signal
){
jamEntry
();
jamEntry
();
//
const Uint32 senderRef = signal->theData[0];
const
Uint32
senderRef
=
signal
->
theData
[
0
];
const
Uint32
nodeId
=
signal
->
theData
[
1
];
const
Uint32
nodeId
=
signal
->
theData
[
1
];
ndbrequire
(
!
c_alive_nodes
.
get
(
nodeId
));
ndbrequire
(
!
c_alive_nodes
.
get
(
nodeId
));
c_alive_nodes
.
set
(
nodeId
);
c_alive_nodes
.
set
(
nodeId
);
#if 0 // if we include this DIH's got to be prepared, later if needed...
signal
->
theData
[
0
]
=
reference
();
signal
->
theData
[
0
]
=
reference
();
sendSignal
(
senderRef
,
GSN_INCL_NODECONF
,
signal
,
1
,
JBB
);
sendSignal
(
senderRef
,
GSN_INCL_NODECONF
,
signal
,
1
,
JBB
);
#endif
}
}
void
void
...
@@ -955,6 +952,15 @@ Suma::execDUMP_STATE_ORD(Signal* signal){
...
@@ -955,6 +952,15 @@ Suma::execDUMP_STATE_ORD(Signal* signal){
CLEAR_ERROR_INSERT_VALUE
;
CLEAR_ERROR_INSERT_VALUE
;
}
}
if
(
tCase
==
8010
)
{
char
buf1
[
255
],
buf2
[
255
];
c_subscriber_nodes
.
getText
(
buf1
);
c_connected_nodes
.
getText
(
buf2
);
infoEvent
(
"c_subscriber_nodes: %s"
,
buf1
);
infoEvent
(
"c_connected_nodes: %s"
,
buf2
);
}
if
(
tCase
==
8009
)
if
(
tCase
==
8009
)
{
{
if
(
ERROR_INSERTED
(
13030
))
if
(
ERROR_INSERTED
(
13030
))
...
...
storage/ndb/test/ndbapi/testNodeRestart.cpp
View file @
d50539b6
...
@@ -1517,6 +1517,56 @@ runBug27283(NDBT_Context* ctx, NDBT_Step* step)
...
@@ -1517,6 +1517,56 @@ runBug27283(NDBT_Context* ctx, NDBT_Step* step)
return
NDBT_OK
;
return
NDBT_OK
;
}
}
int
runBug27466
(
NDBT_Context
*
ctx
,
NDBT_Step
*
step
)
{
int
result
=
NDBT_OK
;
int
loops
=
ctx
->
getNumLoops
();
int
records
=
ctx
->
getNumRecords
();
NdbRestarter
res
;
if
(
res
.
getNumDbNodes
()
<
2
)
{
return
NDBT_OK
;
}
Uint32
pos
=
0
;
for
(
Uint32
i
=
0
;
i
<
loops
;
i
++
)
{
int
node1
=
res
.
getDbNodeId
(
rand
()
%
res
.
getNumDbNodes
());
int
node2
=
node1
;
while
(
node1
==
node2
)
{
node2
=
res
.
getDbNodeId
(
rand
()
%
res
.
getNumDbNodes
());
}
if
(
res
.
restartOneDbNode
(
node1
,
false
,
true
,
true
))
return
NDBT_FAILED
;
if
(
res
.
waitNodesNoStart
(
&
node1
,
1
))
return
NDBT_FAILED
;
int
val2
[]
=
{
DumpStateOrd
::
CmvmiSetRestartOnErrorInsert
,
1
};
if
(
res
.
dumpStateOneNode
(
node1
,
val2
,
2
))
return
NDBT_FAILED
;
if
(
res
.
insertErrorInNode
(
node2
,
8039
))
return
NDBT_FAILED
;
res
.
startNodes
(
&
node1
,
1
);
NdbSleep_SecSleep
(
3
);
if
(
res
.
waitNodesNoStart
(
&
node1
,
1
))
return
NDBT_FAILED
;
NdbSleep_SecSleep
(
5
);
// Wait for delayed INCL_NODECONF to arrive
res
.
startNodes
(
&
node1
,
1
);
if
(
res
.
waitClusterStarted
())
return
NDBT_FAILED
;
}
return
NDBT_OK
;
}
NDBT_TESTSUITE
(
testNodeRestart
);
NDBT_TESTSUITE
(
testNodeRestart
);
TESTCASE
(
"NoLoad"
,
TESTCASE
(
"NoLoad"
,
"Test that one node at a time can be stopped and then restarted "
\
"Test that one node at a time can be stopped and then restarted "
\
...
@@ -1871,6 +1921,9 @@ TESTCASE("Bug27003", ""){
...
@@ -1871,6 +1921,9 @@ TESTCASE("Bug27003", ""){
TESTCASE
(
"Bug27283"
,
""
){
TESTCASE
(
"Bug27283"
,
""
){
INITIALIZER
(
runBug27283
);
INITIALIZER
(
runBug27283
);
}
}
TESTCASE
(
"Bug27466"
,
""
){
INITIALIZER
(
runBug27466
);
}
NDBT_TESTSUITE_END
(
testNodeRestart
);
NDBT_TESTSUITE_END
(
testNodeRestart
);
int
main
(
int
argc
,
const
char
**
argv
){
int
main
(
int
argc
,
const
char
**
argv
){
...
...
storage/ndb/test/run-test/daily-basic-tests.txt
View file @
d50539b6
...
@@ -800,6 +800,10 @@ max-time: 1000
...
@@ -800,6 +800,10 @@ max-time: 1000
cmd: testNodeRestart
cmd: testNodeRestart
args: -n Bug25468 T1
args: -n Bug25468 T1
max-time: 1000
cmd: testNodeRestart
args: -n Bug27466 T1
max-time: 1000
max-time: 1000
cmd: test_event
cmd: test_event
args: -l 10 -n Bug27169 T1
args: -l 10 -n Bug27169 T1
...
...
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