[ARVADOS] updated: 9c2cc3772d61d0930f28942f778b7ca4b096d717
git at public.curoverse.com
git at public.curoverse.com
Sun Feb 14 15:15:13 EST 2016
Summary of changes:
.../crunchstat-summary/crunchstat_summary/summarizer.py | 16 ++++++++--------
tools/crunchstat-summary/tests/test_examples.py | 3 +++
2 files changed, 11 insertions(+), 8 deletions(-)
via 9c2cc3772d61d0930f28942f778b7ca4b096d717 (commit)
from 2eb7ed57612ce4d360e02b4c3cd0dc43f6db9511 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit 9c2cc3772d61d0930f28942f778b7ca4b096d717
Author: Tom Clegg <tom at curoverse.com>
Date: Thu Feb 11 16:25:54 2016 -0500
Process live logs for unfinished jobs in pipeline mode, too.
No issue #
diff --git a/tools/crunchstat-summary/crunchstat_summary/summarizer.py b/tools/crunchstat-summary/crunchstat_summary/summarizer.py
index 0d5d6a2..d058c23 100644
--- a/tools/crunchstat-summary/crunchstat_summary/summarizer.py
+++ b/tools/crunchstat-summary/crunchstat_summary/summarizer.py
@@ -197,6 +197,8 @@ class Summarizer(object):
return label
def text_report(self):
+ if not self.tasks:
+ return "(no report generated)\n"
return "\n".join(itertools.chain(
self._text_report_gen(),
self._recommend_gen())) + "\n"
@@ -226,7 +228,8 @@ class Summarizer(object):
lambda x: x * 100),
('Overall CPU usage: {}%',
self.job_tot['cpu']['user+sys'] /
- self.job_tot['time']['elapsed'],
+ self.job_tot['time']['elapsed']
+ if self.job_tot['time']['elapsed'] > 0 else 0,
lambda x: x * 100),
('Max memory used by a single task: {}GB',
self.stats_max['mem']['rss'],
@@ -374,7 +377,7 @@ class JobSummarizer(Summarizer):
else:
self.job = job
rdr = None
- if self.job['log']:
+ if self.job.get('log'):
try:
rdr = crunchstat_summary.reader.CollectionReader(self.job['log'])
except arvados.errors.NotFoundError as e:
@@ -400,15 +403,12 @@ class PipelineSummarizer(object):
if 'job' not in component:
logger.warning(
"%s: skipping component with no job assigned", cname)
- elif component['job'].get('log') is None:
- logger.warning(
- "%s: skipping job %s with no log available",
- cname, component['job'].get('uuid'))
else:
logger.info(
- "%s: logdata %s", cname, component['job']['log'])
+ "%s: job %s", cname, component['job']['uuid'])
summarizer = JobSummarizer(component['job'], **kwargs)
- summarizer.label = cname
+ summarizer.label = '{} {}'.format(
+ cname, component['job']['uuid'])
self.summarizers[cname] = summarizer
self.label = pipeline_instance_uuid
diff --git a/tools/crunchstat-summary/tests/test_examples.py b/tools/crunchstat-summary/tests/test_examples.py
index 6c14437..b1e5fed 100644
--- a/tools/crunchstat-summary/tests/test_examples.py
+++ b/tools/crunchstat-summary/tests/test_examples.py
@@ -144,6 +144,9 @@ class SummarizePipeline(ReportDiff):
job_report + ['\n'] +
['### Summary for bar (zzzzz-8i9sb-000000000000001)\n'] +
job_report + ['\n'] +
+ ['### Summary for unfinished-job (zzzzz-8i9sb-xxxxxxxxxxxxxxx)\n',
+ '(no report generated)\n',
+ '\n'] +
['### Summary for baz (zzzzz-8i9sb-000000000000002)\n'] +
job_report)
self.diff_report(cmd, expect)
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list