You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by ta...@apache.org on 2020/12/11 07:14:48 UTC

[flink] branch release-1.11 updated: [FLINK-20554][web] Correct the display of latest completed checkpoint size on the overview page

This is an automated email from the ASF dual-hosted git repository.

tangyun pushed a commit to branch release-1.11
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/release-1.11 by this push:
     new 1ead23d  [FLINK-20554][web] Correct the display of latest completed checkpoint size on the overview page
1ead23d is described below

commit 1ead23dc2ce4da209cba6e2869a53e2088a8334b
Author: liming.1018 <li...@bytedance.com>
AuthorDate: Thu Dec 10 20:07:49 2020 +0800

    [FLINK-20554][web] Correct the display of latest completed checkpoint size on the overview page
---
 .../src/app/pages/job/checkpoints/job-checkpoints.component.html        | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/flink-runtime-web/web-dashboard/src/app/pages/job/checkpoints/job-checkpoints.component.html b/flink-runtime-web/web-dashboard/src/app/pages/job/checkpoints/job-checkpoints.component.html
index 45da840..79d8e02 100644
--- a/flink-runtime-web/web-dashboard/src/app/pages/job/checkpoints/job-checkpoints.component.html
+++ b/flink-runtime-web/web-dashboard/src/app/pages/job/checkpoints/job-checkpoints.component.html
@@ -49,7 +49,7 @@
               <nz-divider nzType="vertical"></nz-divider>
               <span><strong>End to End Duration: </strong> {{ checkPointStats['latest']['completed']['end_to_end_duration'] | humanizeDuration}}</span>
               <nz-divider nzType="vertical"></nz-divider>
-              <span><strong>Checkpointed Data Size: </strong> {{ checkPointStats['latest']['completed']['checkpointed_data_size'] | humanizeBytes }}</span>
+              <span><strong>Checkpointed Data Size: </strong> {{ checkPointStats['latest']['completed']['state_size'] | humanizeBytes }}</span>
             </td>
             <td *ngIf="!checkPointStats['latest']['completed']">None</td>
           </tr>