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
6db7a305
Commit
6db7a305
authored
11 years ago
by
Morris Jette
Browse files
Options
Downloads
Patches
Plain Diff
Enforce QOS MaxCPUsMin limit when job has no time limit
bug 436
parent
262374a8
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
+2
-0
2 additions, 0 deletions
NEWS
src/slurmctld/acct_policy.c
+22
-29
22 additions, 29 deletions
src/slurmctld/acct_policy.c
with
24 additions
and
29 deletions
NEWS
+
2
−
0
View file @
6db7a305
...
...
@@ -18,6 +18,8 @@ documents those changes that are of interest to users and admins.
-- switch/nrt - Don't allocate network resources unless job step has 2+ nodes.
-- select/cons_res - Avoid extraneous "oversubscribe" error messages.
-- Reorder get config logic to avoid deadlock.
-- Enforce QOS MaxCPUsMin limit when job submission contains no user-specified
time limit.
* Changes in Slurm 2.5.7
========================
...
...
This diff is collapsed.
Click to expand it.
src/slurmctld/acct_policy.c
+
22
−
29
View file @
6db7a305
...
...
@@ -441,9 +441,8 @@ extern bool acct_policy_validate(job_desc_msg_t *job_desc,
bool
rc
=
true
;
uint32_t
qos_max_cpus_limit
=
INFINITE
;
uint32_t
qos_max_nodes_limit
=
INFINITE
;
uint32_t
qos_time_limit
=
INFINITE
;
uint32_t
job_memory
=
0
;
uint64_t
cpu_time_limit
;
uint64_t
job_cpu_time_limit
;
bool
admin_set_memory_limit
=
false
;
assoc_mgr_lock_t
locks
=
{
READ_LOCK
,
NO_LOCK
,
READ_LOCK
,
NO_LOCK
,
NO_LOCK
};
...
...
@@ -647,23 +646,14 @@ extern bool acct_policy_validate(job_desc_msg_t *job_desc,
* if you can end up in PENDING QOSJobLimit, you need
* to validate it if DenyOnLimit is set
*/
if
(
strict_checking
&&
(
qos_ptr
->
max_cpu_mins_pj
!=
INFINITE
)
&&
(
job_desc
->
time_limit
!=
NO_VAL
)
&&
(
job_desc
->
min_cpus
!=
NO_VAL
))
{
cpu_time_limit
=
qos_ptr
->
max_cpu_mins_pj
;
job_cpu_time_limit
=
(
uint64_t
)
job_desc
->
time_limit
*
(
uint64_t
)
job_desc
->
min_cpus
;
if
(
job_cpu_time_limit
>
cpu_time_limit
)
{
if
(
reason
)
*
reason
=
WAIT_QOS_JOB_LIMIT
;
debug2
(
"job submit for user %s(%u): "
"cpu time limit %"
PRIu64
" exceeds "
"qos max per-job %"
PRIu64
""
,
user_name
,
job_desc
->
user_id
,
job_cpu_time_limit
,
cpu_time_limit
);
rc
=
false
;
goto
end_it
;
}
if
(((
job_desc
->
min_cpus
!=
NO_VAL
)
||
(
job_desc
->
min_nodes
!=
NO_VAL
))
&&
(
qos_ptr
->
max_cpu_mins_pj
!=
INFINITE
))
{
uint32_t
cpu_cnt
=
job_desc
->
min_nodes
;
if
((
job_desc
->
min_nodes
==
NO_VAL
)
||
(
job_desc
->
min_cpus
>
job_desc
->
min_nodes
))
cpu_cnt
=
job_desc
->
min_cpus
;
qos_time_limit
=
qos_ptr
->
max_cpu_mins_pj
/
cpu_cnt
;
}
if
((
acct_policy_limit_set
->
max_cpus
==
ADMIN_SET_LIMIT
)
...
...
@@ -770,33 +760,36 @@ extern bool acct_policy_validate(job_desc_msg_t *job_desc,
||
(
qos_ptr
->
max_wall_pj
==
INFINITE
)
||
(
update_call
&&
(
job_desc
->
time_limit
==
NO_VAL
)))
{
/* no need to check/set */
}
else
{
time_limit
=
qos_ptr
->
max_wall_pj
;
}
else
if
(
qos_time_limit
>
qos_ptr
->
max_wall_pj
)
{
qos_time_limit
=
qos_ptr
->
max_wall_pj
;
}
if
(
qos_time_limit
!=
INFINITE
)
{
if
(
job_desc
->
time_limit
==
NO_VAL
)
{
if
(
part_ptr
->
max_time
==
INFINITE
)
job_desc
->
time_limit
=
time_limit
;
else
job_desc
->
time_limit
=
qos_
time_limit
;
else
{
job_desc
->
time_limit
=
MIN
(
time_limit
,
MIN
(
qos_
time_limit
,
part_ptr
->
max_time
);
}
acct_policy_limit_set
->
time
=
1
;
}
else
if
(
acct_policy_limit_set
->
time
&&
job_desc
->
time_limit
>
time_limit
)
{
job_desc
->
time_limit
=
time_limit
;
job_desc
->
time_limit
>
qos_
time_limit
)
{
job_desc
->
time_limit
=
qos_
time_limit
;
}
else
if
(
strict_checking
&&
job_desc
->
time_limit
>
time_limit
)
{
&&
job_desc
->
time_limit
>
qos_
time_limit
)
{
if
(
reason
)
*
reason
=
WAIT_QOS_JOB_LIMIT
;
debug2
(
"job submit for user %s(%u): "
"time limit %u exceeds qos max %u"
,
user_name
,
job_desc
->
user_id
,
job_desc
->
time_limit
,
time_limit
);
job_desc
->
time_limit
,
qos_
time_limit
);
rc
=
false
;
goto
end_it
;
}
}
}
while
(
assoc_ptr
)
{
...
...
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