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
be5ec31f
Commit
be5ec31f
authored
18 years ago
by
Moe Jette
Browse files
Options
Downloads
Patches
Plain Diff
svn merge -r11157:11172
https://eris.llnl.gov/svn/slurm/branches/slurm-1.1
parent
b92eaf6f
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
NEWS
+4
-3
4 additions, 3 deletions
NEWS
src/plugins/sched/wiki2/msg.c
+12
-3
12 additions, 3 deletions
src/plugins/sched/wiki2/msg.c
with
16 additions
and
6 deletions
NEWS
+
4
−
3
View file @
be5ec31f
...
...
@@ -245,17 +245,18 @@ documents those changes that are of interest to users and admins.
* Changes in SLURM 1.1.33
=========================
- sched/wiki - Do not wait for job completion before permitting
- sched/wiki
2
- Do not wait for job completion before permitting
additional jobs to be scheduled.
- Add srun SLURM_EXCLUSIVE environment variable support, from
Gilles Civario (Bull).
- sched/wiki - Report job's node sharing options.
- sched/wiki2 - Report job's node sharing options.
- sched/wiki2 - If SchedulerPort is in use, retry opening it indefinitely.
* Changes in SLURM 1.1.32
=========================
- If a job's stdout/err file names are unusable (bad path), use the
default names.
- sched/wiki - Fix logic to be compatible with select/cons_res plugin
- sched/wiki
2
- Fix logic to be compatible with select/cons_res plugin
for allocating individual processors within nodes.
- Fix job end time calculation when changed from an initial value of
INFINITE.
...
...
This diff is collapsed.
Click to expand it.
src/plugins/sched/wiki2/msg.c
+
12
−
3
View file @
be5ec31f
...
...
@@ -128,12 +128,21 @@ static void *_msg_thread(void *no_data)
uint16_t
sched_port
;
char
*
msg
;
slurm_ctl_conf_t
*
conf
=
slurm_conf_lock
();
int
i
;
sched_port
=
conf
->
schedport
;
slurm_conf_unlock
();
if
((
sock_fd
=
slurm_init_msg_engine_port
(
sched_port
))
==
SLURM_SOCKET_ERROR
)
{
fatal
(
"wiki: slurm_init_msg_engine_port %u %m"
,
/* If SchedulerPort is already taken, keep trying to open it
* once per minute. Slurmctld will continue to function
* during this interval even if nothing can be scheduled. */
for
(
i
=
0
;
;
i
++
)
{
if
(
i
>
0
)
sleep
(
60
);
sock_fd
=
slurm_init_msg_engine_port
(
sched_port
);
if
(
sock_fd
!=
SLURM_SOCKET_ERROR
)
break
;
error
(
"wiki: slurm_init_msg_engine_port %u %m"
,
sched_port
);
}
...
...
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