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
4a6e9d80
Commit
4a6e9d80
authored
Aug 04, 2004
by
ndbdev@eel.hemma.oreland.se
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wl1292 - workaround for mgmsrv node id problems
parent
90a0345a
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
51 additions
and
55 deletions
+51
-55
ndb/src/cw/cpcd/Makefile.am
ndb/src/cw/cpcd/Makefile.am
+1
-1
ndb/src/cw/cpcd/Process.cpp
ndb/src/cw/cpcd/Process.cpp
+37
-41
ndb/test/run-test/main.cpp
ndb/test/run-test/main.cpp
+13
-13
No files found.
ndb/src/cw/cpcd/Makefile.am
View file @
4a6e9d80
ndb
tools
_PROGRAMS
=
ndb_cpcd
ndb
bin
_PROGRAMS
=
ndb_cpcd
ndb_cpcd_SOURCES
=
main.cpp CPCD.cpp Process.cpp APIService.cpp Monitor.cpp common.cpp
...
...
ndb/src/cw/cpcd/Process.cpp
View file @
4a6e9d80
...
...
@@ -209,11 +209,12 @@ int
set_ulimit
(
const
BaseString
&
pair
){
#ifdef HAVE_GETRLIMIT
errno
=
0
;
do
{
Vector
<
BaseString
>
list
;
pair
.
split
(
list
,
":"
);
if
(
list
.
size
()
!=
2
){
break
;
logger
.
error
(
"Unable to process ulimit: split >%s< list.size()=%d"
,
pair
.
c_str
(),
list
.
size
());
return
-
1
;
}
int
res
;
...
...
@@ -239,19 +240,14 @@ set_ulimit(const BaseString & pair){
_RLIMIT_FIX
(
RLIMIT_CPU
);
}
else
{
errno
=
EINVAL
;
break
;
}
if
(
!
res
)
break
;
return
0
;
}
while
(
false
);
logger
.
error
(
"Unable to process ulimit: %s(%s)"
,
pair
.
c_str
(),
strerror
(
errno
));
if
(
res
){
logger
.
error
(
"Unable to process ulimit: %s res=%d error=%d(%s)"
,
pair
.
c_str
(),
res
,
errno
,
strerror
(
errno
));
return
-
1
;
#else
return
0
;
// Maybe it's ok anyway...
}
#endif
return
0
;
}
void
...
...
ndb/test/run-test/main.cpp
View file @
4a6e9d80
...
...
@@ -106,13 +106,6 @@ main(int argc, const char ** argv){
if
(
!
setup_hosts
(
g_config
))
goto
end
;
if
(
!
start_processes
(
g_config
,
atrt_process
::
NDB_MGM
))
goto
end
;
if
(
!
connect_ndb_mgm
(
g_config
)){
goto
end
;
}
/**
* Main loop
*/
...
...
@@ -122,12 +115,19 @@ main(int argc, const char ** argv){
*/
if
(
restart
){
g_logger
.
info
(
"(Re)starting ndb processes"
);
if
(
!
stop_processes
(
g_config
,
atrt_process
::
NDB_MGM
))
goto
end
;
if
(
!
stop_processes
(
g_config
,
atrt_process
::
NDB_DB
))
goto
end
;
if
(
!
wait_ndb
(
g_config
,
NDB_MGM_NODE_STATUS_NO_CONTACT
))
if
(
!
start_processes
(
g_config
,
atrt_process
::
NDB_MGM
))
goto
end
;
if
(
!
connect_ndb_mgm
(
g_config
)){
goto
end
;
}
if
(
!
start_processes
(
g_config
,
atrt_process
::
NDB_DB
))
goto
end
;
...
...
@@ -140,7 +140,7 @@ main(int argc, const char ** argv){
goto
end
;
started:
started:
g_logger
.
info
(
"Ndb start completed"
);
}
...
...
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