Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
ensembl-gh-mirror
ensembl-hive
Commits
e9779012
Commit
e9779012
authored
Apr 16, 2017
by
Matthieu Muffato
Browse files
A few more termination statuses can be mapped to eHive
parent
4aa343fa
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
modules/Bio/EnsEMBL/Hive/Meadow/LSF.pm
modules/Bio/EnsEMBL/Hive/Meadow/LSF.pm
+4
-0
No files found.
modules/Bio/EnsEMBL/Hive/Meadow/LSF.pm
View file @
e9779012
...
...
@@ -174,11 +174,15 @@ sub parse_report_source_line {
warn
"
LSF::parse_report_source_line(
\"
$bacct_source_line
\"
)
\n
";
# Conplete list of exit codes is available at
# https://www.ibm.com/support/knowledgecenter/SSETD4_9.1.3/lsf_admin/termination_reasons_lsf.html
my
%status_2_cod
=
(
'
TERM_MEMLIMIT
'
=>
'
MEMLIMIT
',
'
TERM_RUNLIMIT
'
=>
'
RUNLIMIT
',
'
TERM_OWNER
'
=>
'
KILLED_BY_USER
',
# bkill (wait until it dies)
'
TERM_FORCE_OWNER
'
=>
'
KILLED_BY_USER
',
# bkill -r (quick remove)
'
TERM_BUCKET_KILL
'
=>
'
KILLED_BY_USER
',
# bkill -b (kills large numbers of jobs as soon as possible)
'
TERM_REQUEUE_OWNER
'
=>
'
KILLED_BY_USER
',
# Job killed and requeued by owner
);
my
%units_2_megs
=
(
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment