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
fee1565e
Commit
fee1565e
authored
14 years ago
by
Don Lipari
Browse files
Options
Downloads
Patches
Plain Diff
-- Fixed small bug in src/common/slurmdb_defs.c reported by Bjorn-Helge
parent
92b0f78c
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
NEWS
+1
-0
1 addition, 0 deletions
NEWS
doc/html/job_exit_code.shtml
+2
-2
2 additions, 2 deletions
doc/html/job_exit_code.shtml
src/common/slurmdb_defs.c
+1
-1
1 addition, 1 deletion
src/common/slurmdb_defs.c
with
4 additions
and
3 deletions
NEWS
+
1
−
0
View file @
fee1565e
...
@@ -44,6 +44,7 @@ documents those changes that are of interest to users and admins.
...
@@ -44,6 +44,7 @@ documents those changes that are of interest to users and admins.
pending jobs.
pending jobs.
-- Increase max message size for the slurmdbd from 1000000 to 16*1024*1024
-- Increase max message size for the slurmdbd from 1000000 to 16*1024*1024
-- Increase number of active threads in the slurmdbd from 50 to 100
-- Increase number of active threads in the slurmdbd from 50 to 100
-- Fixed small bug in src/common/slurmdb_defs.c reported by Bjørn-Helge Mevik
* Changes in SLURM 2.2.0.pre12
* Changes in SLURM 2.2.0.pre12
==============================
==============================
...
...
This diff is collapsed.
Click to expand it.
doc/html/job_exit_code.shtml
+
2
−
2
View file @
fee1565e
...
@@ -52,7 +52,7 @@ ExitCode field whose format mirrors the output of <b>scontrol</b> and
...
@@ -52,7 +52,7 @@ ExitCode field whose format mirrors the output of <b>scontrol</b> and
<h1>Derived Exit Code and String</h1>
<h1>Derived Exit Code and String</h1>
<p>After reading the above description of a job's exit code, one can
<p>After reading the above description of a job's exit code, one can
easily
imagine a scenario where a central task of a job fails but the
imagine a scenario where a central task of a
batch
job fails but the
script returns an exit code of zero, indicating success. In many
script returns an exit code of zero, indicating success. In many
cases, a user may not be able to ascertain the success or failure of a
cases, a user may not be able to ascertain the success or failure of a
job until after they have examined the job's output files.</p>
job until after they have examined the job's output files.</p>
...
@@ -110,7 +110,7 @@ If a change is desired, <b>sjobexitmod</b> can modify the derived fields:
...
@@ -110,7 +110,7 @@ If a change is desired, <b>sjobexitmod</b> can modify the derived fields:
exit fields:</p>
exit fields:</p>
<PRE>
<PRE>
> sacct -X -j 123 -o JobID,NNodes,State,ExitCode,Derived
e
xitcode,DerivedExitStr
> sacct -X -j 123 -o JobID,NNodes,State,ExitCode,Derived
E
xitcode,DerivedExitStr
JobID NNodes State ExitCode DerivedExitCode DerivedExitStr
JobID NNodes State ExitCode DerivedExitCode DerivedExitStr
------------ -------- ---------- -------- --------------- --------------
------------ -------- ---------- -------- --------------- --------------
123 1 COMPLETED 0:0 49:0 out of memory
123 1 COMPLETED 0:0 49:0 out of memory
...
...
This diff is collapsed.
Click to expand it.
src/common/slurmdb_defs.c
+
1
−
1
View file @
fee1565e
...
@@ -1614,7 +1614,7 @@ extern void log_assoc_rec(slurmdb_association_rec_t *assoc_ptr,
...
@@ -1614,7 +1614,7 @@ extern void log_assoc_rec(slurmdb_association_rec_t *assoc_ptr,
if
(
assoc_ptr
->
grp_cpu_run_mins
==
INFINITE
)
if
(
assoc_ptr
->
grp_cpu_run_mins
==
INFINITE
)
debug2
(
" GrpCPURunMins : NONE"
);
debug2
(
" GrpCPURunMins : NONE"
);
else
if
(
assoc_ptr
->
grp_cpu_mins
!=
NO_VAL
)
else
if
(
assoc_ptr
->
grp_cpu_
run_
mins
!=
NO_VAL
)
debug2
(
" GrpCPURunMins : %"
PRIu64
""
,
debug2
(
" GrpCPURunMins : %"
PRIu64
""
,
assoc_ptr
->
grp_cpu_run_mins
);
assoc_ptr
->
grp_cpu_run_mins
);
...
...
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