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
b6b1ff5b
Commit
b6b1ff5b
authored
10 years ago
by
Morris Jette
Browse files
Options
Downloads
Plain Diff
Merge branch 'slurm-14.03'
parents
a7e868ed
7353e804
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
NEWS
+3
-0
3 additions, 0 deletions
NEWS
doc/html/mail.shtml
+7
-4
7 additions, 4 deletions
doc/html/mail.shtml
doc/man/man1/sacct.1
+5
-5
5 additions, 5 deletions
doc/man/man1/sacct.1
src/common/read_config.c
+1
-1
1 addition, 1 deletion
src/common/read_config.c
with
16 additions
and
10 deletions
NEWS
+
3
−
0
View file @
b6b1ff5b
...
...
@@ -187,6 +187,9 @@ documents those changes that are of interest to users and admins.
-- Perl package: Define some missing node states.
-- When using AccountingStorageType=accounting_storage/mysql zero out the
database index for the array elements avoiding duplicate database values.
-- Reword the explanation of cputime and cputimeraw in the sacct man page.
-- JobCompType allows "jobcomp/mysql" as valid name but the code used
"job_comp/mysql" setting an incorrect default database.
* Changes in Slurm 14.03.6
==========================
...
...
This diff is collapsed.
Click to expand it.
doc/html/mail.shtml
+
7
−
4
View file @
b6b1ff5b
...
...
@@ -3,9 +3,12 @@
<h1>Mailing Lists</h1>
<p>We maintain two Slurm mailing lists:</p>
<ul>
<li><b>slurm-announce@schedmd.com</b> is designated for communications about SLURM releases
[low traffic].</li>
<li><b>slurm-dev@schedmd.com</b> is designated for communications to SLURM developers
<li><b>slurm-announce@schedmd.com</b> is designated for communications about
Slurm releases. The ability to post to this list is restricted to a few Slurm
developers [low traffic].</li>
<li><b>slurm-dev@schedmd.com</b> is designated for communications to Slurm
developers and is typically used by Slurm users or system administrators.
Any person subscribed to this mailing list may post to it.
[high traffic at times].</li>
</ul>
<p>To subscribe to either list, vist the link below, sign up and get involved!<p>
...
...
@@ -18,6 +21,6 @@ You can likewise unsubscribe from either list at the same link.
and<br>
<a href="http://groups.google.com/group/slurm-devel">http://groups.google.com/group/slurm-devel</a></p>
<p style="text-align:center;">Last modified
3
A
pril
201
3
</p>
<p style="text-align:center;">Last modified
5
A
ugust
201
4
</p>
<!--#include virtual="footer.txt"-->
This diff is collapsed.
Click to expand it.
doc/man/man1/sacct.1
+
5
−
5
View file @
b6b1ff5b
...
...
@@ -476,13 +476,13 @@ Note: Only in case of exclusive job allocation this value
reflects the jobs' real energy consumption.
.TP
\f3
cput
ime\fP
Formatted
number of cpu seconds a process was alloca
te
d
.
\f3
CPUT
ime\fP
Formatted
(Elapsed time * CPU) count used by a job or s
te
p
.
.TP
\f3
cput
ime
r
aw\fP
How much cpu time process was allocated in second format, not formatted
like above
.
\f3
CPUT
ime
R
aw\fP
Unlike above non formatted (Elapsed time * CPU) count for a job or step.
Units are cpu-seconds
.
.TP
\f3DerivedExitCode\fP
...
...
This diff is collapsed.
Click to expand it.
src/common/read_config.c
+
1
−
1
View file @
b6b1ff5b
...
...
@@ -3127,7 +3127,7 @@ _validate_and_set_defaults(slurm_ctl_conf_t *conf, s_p_hashtbl_t *hashtbl)
if
(
!
s_p_get_string
(
&
conf
->
job_comp_loc
,
"JobCompLoc"
,
hashtbl
))
{
if
(
default_storage_loc
)
conf
->
job_comp_loc
=
xstrdup
(
default_storage_loc
);
else
if
(
!
strcmp
(
conf
->
job_comp_type
,
"job
_
comp/mysql"
))
else
if
(
!
strcmp
(
conf
->
job_comp_type
,
"jobcomp/mysql"
))
conf
->
job_comp_loc
=
xstrdup
(
DEFAULT_JOB_COMP_DB
);
else
conf
->
job_comp_loc
=
xstrdup
(
DEFAULT_JOB_COMP_LOC
);
...
...
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