Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Slurm
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tud-zih-energy
Slurm
Commits
51fdf4a3
Commit
51fdf4a3
authored
17 years ago
by
Moe Jette
Browse files
Options
Downloads
Patches
Plain Diff
Push more parallelism for message forwarding from slurmctld out to slurmd.
parent
c4dee380
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/slurmctld/agent.c
+17
-10
17 additions, 10 deletions
src/slurmctld/agent.c
with
17 additions
and
10 deletions
src/slurmctld/agent.c
+
17
−
10
View file @
51fdf4a3
...
...
@@ -214,8 +214,10 @@ void *agent(void *args)
task_info_t
*
task_specific_ptr
;
time_t
begin_time
;
/* info("I am here and agent_cnt is %d of %d with type %d", */
/* agent_cnt, MAX_AGENT_CNT, agent_arg_ptr->msg_type); */
#if 0
info("I am here and agent_cnt is %d of %d with type %d",
agent_cnt, MAX_AGENT_CNT, agent_arg_ptr->msg_type);
#endif
slurm_mutex_lock
(
&
agent_cnt_mutex
);
while
(
slurmctld_config
.
shutdown_time
==
0
)
{
if
(
agent_cnt
<
MAX_AGENT_CNT
)
{
...
...
@@ -359,7 +361,6 @@ static agent_info_t *_make_agent_info(agent_arg_t *agent_arg_ptr)
thd_t
*
thread_ptr
=
NULL
;
int
*
span
=
NULL
;
int
thr_count
=
0
;
//forward_t forward;
hostlist_t
hl
=
NULL
;
char
buf
[
8192
];
char
*
name
=
NULL
;
...
...
@@ -384,9 +385,15 @@ static agent_info_t *_make_agent_info(agent_arg_t *agent_arg_ptr)
&&
(
agent_arg_ptr
->
msg_type
!=
SRUN_NODE_FAIL
)
&&
(
agent_arg_ptr
->
msg_type
!=
SRUN_USER_MSG
)
&&
(
agent_arg_ptr
->
msg_type
!=
SRUN_JOB_COMPLETE
))
{
/* Sending message to a possibly large number of slurmd.
* Push all message forwarding to slurmd in order to
* offload as much work from slurmctld as possible. */
agent_info_ptr
->
get_reply
=
true
;
span
=
set_span
(
agent_arg_ptr
->
node_count
,
0
);
span
=
set_span
(
agent_arg_ptr
->
node_count
,
1
);
}
else
{
/* Message is going to one node (for srun) or we want
* it to get processed ASAP (SHUTDOWN or RECONFIGURE).
* Send the message directly to each node. */
span
=
set_span
(
agent_arg_ptr
->
node_count
,
agent_arg_ptr
->
node_count
);
}
...
...
@@ -411,7 +418,6 @@ static agent_info_t *_make_agent_info(agent_arg_t *agent_arg_ptr)
name
=
hostlist_shift
(
agent_arg_ptr
->
hostlist
);
if
(
!
name
)
break
;
/* info("adding %s", name); */
hostlist_push
(
hl
,
name
);
free
(
name
);
i
++
;
...
...
@@ -420,9 +426,9 @@ static agent_info_t *_make_agent_info(agent_arg_t *agent_arg_ptr)
hostlist_ranged_string
(
hl
,
sizeof
(
buf
),
buf
);
hostlist_destroy
(
hl
);
thread_ptr
[
thr_count
].
nodelist
=
xstrdup
(
buf
);
/*
info("sending to nodes %s",
*/
/* thread_ptr[thr_count].nodelist); */
#if 0
info("sending to nodes %s",
thread_ptr[thr_count].nodelist);
#endif
thr_count
++
;
}
xfree
(
span
);
...
...
@@ -806,8 +812,9 @@ static void *_thread_per_group_rpc(void *args)
slurm_msg_t_init
(
&
msg
);
msg
.
msg_type
=
msg_type
;
msg
.
data
=
task_ptr
->
msg_args_ptr
;
/* info("sending message type %u to %s", msg_type,
thread_ptr->nodelist); */
#if 0
info("sending message type %u to %s", msg_type, thread_ptr->nodelist);
#endif
if
(
task_ptr
->
get_reply
)
{
if
(
thread_ptr
->
addr
)
{
msg
.
address
=
*
thread_ptr
->
addr
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment