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
3f05b2a0
Commit
3f05b2a0
authored
9 years ago
by
Morris Jette
Browse files
Options
Downloads
Patches
Plain Diff
burst_buffer/cray: Change some timeouts
parent
42d958db
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
doc/man/man5/burst_buffer.conf.5
+2
-2
2 additions, 2 deletions
doc/man/man5/burst_buffer.conf.5
src/plugins/burst_buffer/cray/burst_buffer_cray.c
+3
-3
3 additions, 3 deletions
src/plugins/burst_buffer/cray/burst_buffer_cray.c
with
5 additions
and
5 deletions
doc/man/man5/burst_buffer.conf.5
+
2
−
2
View file @
3f05b2a0
...
...
@@ -118,13 +118,13 @@ By default, users can view all burst buffers.
If the stage in of files for a job takes more than this number of seconds,
the burst buffer will be released and the job will be placed in a held state.
A Slurm administrator will be required to release the job.
By default there is
no
timeout of the stage in process.
By default there is
a one day
timeout of the stage in process.
.TP
\fBStageOutTimeout\fR
If the stage out of files for a job takes more than this number of seconds,
the burst buffer will be released and the job will be purged.
By default there is
no
timeout of the stage out process.
By default there is
a one day
timeout of the stage out process.
.TP
\fBStartStageIn\fR
...
...
This diff is collapsed.
Click to expand it.
src/plugins/burst_buffer/cray/burst_buffer_cray.c
+
3
−
3
View file @
3f05b2a0
...
...
@@ -1308,7 +1308,7 @@ static void *_start_stage_in(void *x)
if
(
stage_args
->
timeout
)
timeout
=
stage_args
->
timeout
*
1000
;
else
timeout
=
10000
;
timeout
=
60
*
60
*
1000
;
/* 3600 secs == 1 hour */
op
=
"setup"
;
START_TIMER
;
resp_msg
=
bb_run_script
(
"setup"
,
...
...
@@ -1527,7 +1527,7 @@ static void *_start_stage_out(void *x)
if
(
stage_args
->
timeout
)
timeout
=
stage_args
->
timeout
*
1000
;
else
timeout
=
10000
;
timeout
=
60
*
60
*
1000
;
/* 3600 secs == 1 hour */
op
=
"dws_post_run"
;
START_TIMER
;
xfree
(
resp_msg
);
...
...
@@ -1683,7 +1683,7 @@ static void *_start_teardown(void *x)
if
(
teardown_args
->
timeout
)
timeout
=
teardown_args
->
timeout
*
1000
;
else
timeout
=
10000
;
timeout
=
60
*
60
*
1000
;
/* 3600 secs == 1 hour */
resp_msg
=
bb_run_script
(
"teardown"
,
bb_state
.
bb_config
.
get_sys_state
,
teardown_argv
,
timeout
,
&
status
);
...
...
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