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
fafc97eb
Commit
fafc97eb
authored
10 years ago
by
Morris Jette
Browse files
Options
Downloads
Patches
Plain Diff
burst_buffer/cray
Unify tracking of BB use on normal and abnormal terminations Fix teardown race condition
parent
28debbeb
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
src/plugins/burst_buffer/common/burst_buffer_common.c
+8
-0
8 additions, 0 deletions
src/plugins/burst_buffer/common/burst_buffer_common.c
src/plugins/burst_buffer/cray/burst_buffer_cray.c
+15
-43
15 additions, 43 deletions
src/plugins/burst_buffer/cray/burst_buffer_cray.c
with
23 additions
and
43 deletions
src/plugins/burst_buffer/common/burst_buffer_common.c
+
8
−
0
View file @
fafc97eb
...
...
@@ -289,6 +289,8 @@ extern void bb_remove_user_load(bb_alloc_t *bb_ptr, bb_state_t *state_ptr)
__func__
,
user_ptr
->
user_id
);
user_ptr
->
size
=
0
;
}
bb_ptr
->
size
=
0
;
for
(
i
=
0
;
i
<
bb_ptr
->
gres_cnt
;
i
++
)
{
for
(
j
=
0
;
j
<
state_ptr
->
bb_config
.
gres_cnt
;
j
++
)
{
if
(
strcmp
(
bb_ptr
->
gres_ptr
[
i
].
name
,
...
...
@@ -309,6 +311,12 @@ extern void bb_remove_user_load(bb_alloc_t *bb_ptr, bb_state_t *state_ptr)
}
break
;
}
if
(
j
>=
state_ptr
->
bb_config
.
gres_cnt
)
{
error
(
"%s: failed to find gres %s from job %u"
,
__func__
,
bb_ptr
->
gres_ptr
[
i
].
name
,
bb_ptr
->
job_id
);
}
bb_ptr
->
gres_ptr
[
i
].
used_cnt
=
0
;
}
}
...
...
This diff is collapsed.
Click to expand it.
src/plugins/burst_buffer/cray/burst_buffer_cray.c
+
15
−
43
View file @
fafc97eb
...
...
@@ -934,7 +934,7 @@ static void *_start_teardown(void *x)
{
stage_args_t
*
teardown_args
;
char
*
bbs_teardown_path
,
**
teardown_argv
,
*
resp_msg
=
NULL
;
int
i
,
j
,
status
=
0
,
timeout
;
int
i
,
status
=
0
,
timeout
;
struct
job_record
*
job_ptr
;
bb_alloc_t
*
bb_ptr
=
NULL
;
DEF_TIMERS
;
...
...
@@ -963,37 +963,16 @@ static void *_start_teardown(void *x)
xfree
(
resp_msg
);
pthread_mutex_lock
(
&
bb_state
.
bb_mutex
);
if
((
job_ptr
=
find_job_record
(
teardown_args
->
job_id
)))
if
((
job_ptr
=
find_job_record
(
teardown_args
->
job_id
)))
{
_purge_bb_files
(
job_ptr
);
bb_ptr
=
bb_find_job_rec
(
job_ptr
,
bb_state
.
bb_hash
);
}
if
(
bb_ptr
)
{
bb_ptr
->
cancelled
=
true
;
bb_ptr
->
end_time
=
0
;
bb_ptr
->
state
=
BB_STATE_COMPLETE
;
bb_ptr
->
state_time
=
time
(
NULL
);
if
(
bb_ptr
->
size
>
bb_state
.
used_space
)
{
error
(
"%s: space underflow"
,
__func__
);
bb_state
.
used_space
=
0
;
}
else
{
bb_state
.
used_space
-=
bb_ptr
->
size
;
}
for
(
i
=
0
;
i
<
bb_ptr
->
gres_cnt
;
i
++
)
{
for
(
j
=
0
;
j
<
bb_state
.
bb_config
.
gres_cnt
;
j
++
)
{
if
(
strcmp
(
bb_ptr
->
gres_ptr
[
i
].
name
,
bb_state
.
bb_config
.
gres_ptr
[
j
].
name
))
continue
;
if
(
bb_ptr
->
gres_ptr
[
i
].
used_cnt
>
bb_state
.
bb_config
.
gres_ptr
[
j
].
used_cnt
)
{
error
(
"%s: gres %s counter underflow"
,
__func__
,
bb_state
.
bb_config
.
gres_ptr
[
j
].
name
);
bb_state
.
bb_config
.
gres_ptr
[
j
].
used_cnt
=
0
;
}
else
{
bb_state
.
bb_config
.
gres_ptr
[
j
].
used_cnt
-=
bb_ptr
->
gres_ptr
[
i
].
used_cnt
;
}
break
;
}
}
bb_remove_user_load
(
bb_ptr
,
&
bb_state
);
}
else
{
error
(
"%s: unable to find bb record for job %u"
,
__func__
,
teardown_args
->
job_id
);
...
...
@@ -1234,6 +1213,7 @@ static int _test_size_limit(struct job_record *job_ptr, bb_job_t *bb_spec)
static
void
_timeout_bb_rec
(
void
)
{
bb_alloc_t
**
bb_pptr
,
*
bb_ptr
=
NULL
;
struct
job_record
*
job_ptr
;
int
i
;
for
(
i
=
0
;
i
<
BB_HASH_SIZE
;
i
++
)
{
...
...
@@ -1257,17 +1237,14 @@ bb_ptr->seen_time = bb_state.last_load_time;
xfree
(
bb_ptr
);
break
;
}
if
((
bb_ptr
->
job_id
!=
0
)
&&
(
bb_ptr
->
state
>=
BB_STATE_STAGED_OUT
)
&&
!
find_job_record
(
bb_ptr
->
job_id
))
{
bb_ptr
->
cancelled
=
true
;
bb_ptr
->
end_time
=
0
;
bb_ptr
->
state
=
BB_STATE_TEARDOWN
;
bb_ptr
->
state_time
=
time
(
NULL
);
_queue_teardown
(
bb_ptr
->
job_id
,
true
);
*
bb_pptr
=
bb_ptr
->
next
;
xfree
(
bb_ptr
);
break
;
if
(
bb_ptr
->
state
==
BB_STATE_COMPLETE
)
{
job_ptr
=
find_job_record
(
bb_ptr
->
job_id
);
if
(
!
job_ptr
||
IS_JOB_PENDING
(
job_ptr
))
{
/* Job purged or BB preempted */
*
bb_pptr
=
bb_ptr
->
next
;
xfree
(
bb_ptr
);
break
;
}
}
bb_pptr
=
&
bb_ptr
->
next
;
bb_ptr
=
bb_ptr
->
next
;
...
...
@@ -1878,6 +1855,7 @@ extern int bb_p_job_try_stage_in(List job_queue)
bb_spec
=
job_rec
->
bb_spec
;
if
(
bb_find_job_rec
(
job_ptr
,
bb_state
.
bb_hash
))
{
/* Job has already been allocated a buffer */
_del_bb_spec
(
bb_spec
);
continue
;
}
...
...
@@ -2105,10 +2083,6 @@ extern int bb_p_job_test_stage_out(struct job_record *job_ptr)
if
(
bb_ptr
->
state
==
BB_STATE_STAGING_OUT
)
{
rc
=
0
;
}
else
if
(
bb_ptr
->
state
==
BB_STATE_COMPLETE
)
{
if
(
bb_ptr
->
size
!=
0
)
{
bb_remove_user_load
(
bb_ptr
,
&
bb_state
);
bb_ptr
->
size
=
0
;
}
rc
=
1
;
}
else
{
error
(
"%s: job_id:%u bb_state:%u"
,
...
...
@@ -2116,8 +2090,6 @@ extern int bb_p_job_test_stage_out(struct job_record *job_ptr)
rc
=
-
1
;
}
}
if
(
rc
==
1
)
_purge_bb_files
(
job_ptr
);
pthread_mutex_unlock
(
&
bb_state
.
bb_mutex
);
return
rc
;
...
...
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