blob: 17326e50f9b9a74ec98ffbe777799edae2389e7f [file] [log] [blame]
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<div ng-if="checkpointStats">
<table class="table">
<thead>
<tr>
<td></td>
<td><strong>Minimum</strong></td>
<td><strong>Average</strong></td>
<td><strong>Maximum</strong></td>
</tr>
</thead>
<tbody>
<tr>
<td><strong>State Size</strong></td>
<td>{{ checkpointStats['summary']['state_size']['min'] | humanizeBytes }}</td>
<td>{{ checkpointStats['summary']['state_size']['avg'] | humanizeBytes }}</td>
<td>{{ checkpointStats['summary']['state_size']['max'] | humanizeBytes }}</td>
</tr>
<tr>
<td><strong>End to End Duration</strong></td>
<td>{{ checkpointStats['summary']['end_to_end_duration']['min'] | humanizeBytes }}</td>
<td>{{ checkpointStats['summary']['end_to_end_duration']['avg'] | humanizeBytes }}</td>
<td>{{ checkpointStats['summary']['end_to_end_duration']['max'] | humanizeBytes }}</td>
</tr>
<tr ng-if="isExactlyOnce">
<td><strong>Buffered during Alignment</strong></td>
<td>{{ checkpointStats['summary']['alignment_buffered']['min'] | humanizeBytes }}</td>
<td>{{ checkpointStats['summary']['alignment_buffered']['avg'] | humanizeBytes }}</td>
<td>{{ checkpointStats['summary']['alignment_buffered']['max'] | humanizeBytes }}</td>
</tr>
<tr ng-if="!isExactlyOnce">
<td><strong>Buffered during Alignment</strong></td>
<td colspan="3">No alignments with at-least-once checkpointing mode</td>
</tr>
</tbody>
</table>
<p>These number are computed over <i>all</i> completed checkpoints.</p>
</div>