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
9494601d
Commit
9494601d
authored
Apr 14, 2004
by
magnus@neptunus.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added more files for NDB Cluster
parent
e28b3702
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
98 additions
and
0 deletions
+98
-0
ndb/home/bin/parseConfigFile.awk
ndb/home/bin/parseConfigFile.awk
+98
-0
No files found.
ndb/home/bin/parseConfigFile.awk
0 → 100644
View file @
9494601d
BEGIN
{
where
=
0
;
n_hosts
=
0
;
n_api
=
0
;
n_ndb
=
0
;
n_mgm
=
0
;
n_ports
=
0
;
}
/COMPUTERS/
{
where
=
1
;
}
/
\[[
\t]
*COMPUTER
[
\t]
*
\]
/
{
where
=
1
;
}
/PROCESSES/
{
where
=
2
;
}
/Type: MGMT/
{
if
(
where
!=
1
){
where
=
2
;
n_mgm
++
;
}
}
/
\[[
\t]
*MGM
[
\t]
*
\]
/
{
where
=
2
;
n_mgm
++
;
}
/Type: DB/
{
if
(
where
!=
1
){
where
=
3
;
n_ndb
++
;
}
}
/
\[[
\t]
*DB
[
\t]
*
\]
/
{
where
=
3
;
n_ndb
++
;
}
/Type: API/
{
if
(
where
!=
1
){
where
=
4
;
n_api
++
;
}
}
/
\[[
\t]
*API
[
\t]
*
\]
/
{
where
=
4
;
n_api
++
;
}
/HostName:/
{
host_names
[
host_ids
[
n_hosts
]]
=
$2
;
}
/FileSystemPath:/
{
if
(
where
==
3
){
ndb_fs
[
ndb_ids
[
n_ndb
]]
=
$2
;
}
}
/Id:/
{
if
(
where
==
1
){
n_hosts
++
;
host_ids
[
n_hosts
]
=
$2
;
}
if
(
where
==
2
){
mgm_ids
[
n_mgm
]
=
$2
;
}
if
(
where
==
3
){
ndb_ids
[
n_ndb
]
=
$2
;
}
if
(
where
==
4
){
api_ids
[
n_api
]
=
$2
;
}
}
/ExecuteOnComputer:/
{
if
(
where
==
2
){
mgm_hosts
[
mgm_ids
[
n_mgm
]]
=
host_names
[
$2
];
}
if
(
where
==
3
){
ndb_hosts
[
ndb_ids
[
n_ndb
]]
=
host_names
[
$2
];
}
if
(
where
==
4
){
api_hosts
[
api_ids
[
n_api
]]
=
host_names
[
$2
];
}
}
END
{
for
(
i
=
1
;
i
<=
n_mgm
;
i
++
){
printf
(
"mgm_%d=%s\n"
,
mgm_ids
[
i
],
mgm_hosts
[
mgm_ids
[
i
]]);
}
for
(
i
=
1
;
i
<=
n_ndb
;
i
++
){
printf
(
"ndb_%d=%s\n"
,
ndb_ids
[
i
],
ndb_hosts
[
ndb_ids
[
i
]]);
printf
(
"ndbfs_%d=%s\n"
,
ndb_ids
[
i
],
ndb_fs
[
ndb_ids
[
i
]]);
}
for
(
i
=
1
;
i
<=
n_api
;
i
++
){
printf
(
"api_%d=%s\n"
,
api_ids
[
i
],
api_hosts
[
api_ids
[
i
]]);
}
printf
(
"mgm_nodes=%d\n"
,
n_mgm
);
printf
(
"ndb_nodes=%d\n"
,
n_ndb
);
printf
(
"api_nodes=%d\n"
,
n_api
);
}
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