{% extends 'base_AdminLTE.html' %} {% block title %}Docklet | Batch Job Info{% endblock %} {% block panel_title %}Info for {{ jobinfo['job_id'] }}{% endblock %} {% block css_src %} {% endblock %} {% block panel_list %} {% endblock %} {% block content %}

Overview

Job ID Name Priority Status Create Time End Time Billing
{{ jobinfo['job_id'] }} {{ jobinfo['job_name'] }} {{ jobinfo['priority'] }} {{ jobinfo['status'] }} {{ jobinfo['create_time'] }} {{ jobinfo['end_time'] }} {{ jobinfo['billing'] }}

Tasks Overview

{% for task in jobinfo['tasks'] %} {% endfor %}
Task Index Status Failed Reason(if fails) Tried Times Start Time End Time Total Running Time Billing
{{ task['idx'] }} {{ task['status'] }} {{ task['failed_reason'] }} {{ task['tried_times'] }} {{ task['start_time'] }} {{ task['end_time'] }} {{ task['running_time'] }} s {{ task['billing'] }}

Tasks Configs

{% for task in jobinfo['tasks'] %}
{% if task['config']['runon'] == 'all' %} {% else %} {% endif %} {% if 'atSameTime' in task['config'].keys() %} {% else %} {% endif %} {% if task['config']['image'] == 'base_base_base' %} {% else %} {% endif %}
CPU Cores Memory GPU Disk VNode Number Max Retry Times
{{ task['config']['cpuSetting'] }} {{ task['config']['memorySetting'] }} MB {{ task['config']['gpuSetting'] }} {{ task['config']['diskSetting'] }} MB {{ task['config']['vnodeCount'] }} {{ task['config']['retryCount'] }}
Running Path Expire Time Stdout Redirect Path Stderr Redirect Path Dependency Command
{{ task['config']['srcAddr'] }} {{ task['config']['expTime'] }} seconds {{ task['config']['stdOutRedPth'] }} {{ task['config']['stdErrRedPth'] }} {{ task['config']['dependency'] }} {{ task['config']['command'] }}
Run on Start at the Same Time Image Name Image Owner Image Type
all vnodesmaster vnodeTrueFalsebase docklet public{{ task['config']['image'].split('_')[0] }} {{ task['config']['image'].split('_')[1] }} {{ task['config']['image'].split('_')[2] }}
{% if 'mapping' in task['config'].keys() %}
{% for key in task['config']['mapping'].keys() %} {% endfor %}
Provider Bucket Name AccessKey ID Endpoint Mount Path
{{ task['config']['mapping'][key]['mappingProvider'] }} {{ task['config']['mapping'][key]['mappingBucketName'] }} {{ task['config']['mapping'][key]['mappingAccessKey'] }} {{ task['config']['mapping'][key]['mappingEndpoint'] }} {{ task['config']['mapping'][key]['mappingMountpath'] }}
{% endif %}
{% endfor %}
{% endblock %} {% block script_src %} {% endblock %}