本文整理汇总了Python中Pegasus.service.dashboard.dashboard.Dashboard.get_failed_job_invocation方法的典型用法代码示例。如果您正苦于以下问题:Python Dashboard.get_failed_job_invocation方法的具体用法?Python Dashboard.get_failed_job_invocation怎么用?Python Dashboard.get_failed_job_invocation使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Pegasus.service.dashboard.dashboard.Dashboard
的用法示例。
在下文中一共展示了Dashboard.get_failed_job_invocation方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: failed_invocations
# 需要导入模块: from Pegasus.service.dashboard.dashboard import Dashboard [as 别名]
# 或者: from Pegasus.service.dashboard.dashboard.Dashboard import get_failed_job_invocation [as 别名]
def failed_invocations(username, root_wf_id, wf_id, job_id, job_instance_id):
"""
Get list of failed invocations for a given job.
"""
dashboard = Dashboard(g.master_db_url, root_wf_id, wf_id)
failed_invocations_list = dashboard.get_failed_job_invocation(wf_id, job_id, job_instance_id)
for item in failed_invocations_list:
item.remote_duration_formatted = filters.time_to_str(item.remote_duration)
# is_xhr = True if it is AJAX request.
if request.is_xhr:
if len(failed_invocations_list) > 0:
return render_template(
"workflow/job/invocations_failed.xhr.html",
root_wf_id=root_wf_id,
wf_id=wf_id,
job_id=job_id,
job_instance_id=job_instance_id,
invocations=failed_invocations_list,
)
else:
return "", 204
else:
return render_template(
"workflow/job/invocations_failed.html",
root_wf_id=root_wf_id,
wf_id=wf_id,
job_id=job_id,
job_instance_id=job_instance_id,
invocations=failed_invocations_list,
)
示例2: failed_invocations
# 需要导入模块: from Pegasus.service.dashboard.dashboard import Dashboard [as 别名]
# 或者: from Pegasus.service.dashboard.dashboard.Dashboard import get_failed_job_invocation [as 别名]
def failed_invocations(root_wf_id, wf_id, job_id):
'''
Get list of failed invocations for a given job.
'''
dashboard = Dashboard(g.master_db_url, root_wf_id, wf_id)
failed_invocations_list = dashboard.get_failed_job_invocation(wf_id, job_id)
# is_xhr = True if it is AJAX request.
if request.is_xhr:
if len(failed_invocations_list) > 0:
return render_template('workflow/job/invocations_failed.xhr.html', root_wf_id=root_wf_id, wf_id=wf_id, job_id=job_id, invocations=failed_invocations_list)
else:
return '', 204
else:
return render_template('workflow/job/invocations_failed.html', root_wf_id=root_wf_id, wf_id=wf_id, job_id=job_id, invocations=failed_invocations_list)