Skip to content

Commit

Permalink
[FLINK-22301][runtime] Statebackend and CheckpointStorage type is not…
Browse files Browse the repository at this point in the history
… shown in the Web UI

[FLINK-22301][runtime] Statebackend and CheckpointStorage type is not shown in the Web UI

This closes apache#15732.
  • Loading branch information
SteNicholas authored and tillrohrmann committed Apr 26, 2021
1 parent df301ed commit 394c69c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,8 @@ export interface CheckPointConfigInterface {
enabled: boolean;
delete_on_cancellation: boolean;
};
state_backend: string;
checkpoint_storage: string;
unaligned_checkpoints: boolean;
tolerable_failed_checkpoints: number;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,14 @@
<td *ngIf="checkPointConfig['mode'] == 'exactly_once'">Exactly Once</td>
<td *ngIf="checkPointConfig['mode'] != 'exactly_once'">At Least Once</td>
</tr>
<tr>
<td>Checkpoint Storage</td>
<td>{{ checkPointConfig['checkpoint_storage'] }}</td>
</tr>
<tr>
<td>State Backend</td>
<td>{{ checkPointConfig['state_backend'] }}</td>
</tr>
<tr>
<td>Interval</td>
<td *ngIf="checkPointConfig['interval'] == '0x7fffffffffffffff'">Periodic checkpoints disabled</td>
Expand Down

0 comments on commit 394c69c

Please sign in to comment.