Skip to content

Commit dbcbb98

Browse files
SteNicholastillrohrmann
authored andcommitted
[FLINK-22301][runtime] Statebackend and CheckpointStorage type is not shown in the Web UI
[FLINK-22301][runtime] Statebackend and CheckpointStorage type is not shown in the Web UI This closes #15732.
1 parent a070dfa commit dbcbb98

2 files changed

Lines changed: 10 additions & 0 deletions

File tree

flink-runtime-web/web-dashboard/src/app/interfaces/job-checkpoint.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,8 @@ export interface CheckPointConfigInterface {
115115
enabled: boolean;
116116
delete_on_cancellation: boolean;
117117
};
118+
state_backend: string;
119+
checkpoint_storage: string;
118120
unaligned_checkpoints: boolean;
119121
tolerable_failed_checkpoints: number;
120122
}

flink-runtime-web/web-dashboard/src/app/pages/job/checkpoints/job-checkpoints.component.html

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,14 @@
223223
<td *ngIf="checkPointConfig['mode'] == 'exactly_once'">Exactly Once</td>
224224
<td *ngIf="checkPointConfig['mode'] != 'exactly_once'">At Least Once</td>
225225
</tr>
226+
<tr>
227+
<td>Checkpoint Storage</td>
228+
<td>{{ checkPointConfig['checkpoint_storage'] }}</td>
229+
</tr>
230+
<tr>
231+
<td>State Backend</td>
232+
<td>{{ checkPointConfig['state_backend'] }}</td>
233+
</tr>
226234
<tr>
227235
<td>Interval</td>
228236
<td *ngIf="checkPointConfig['interval'] == '0x7fffffffffffffff'">Periodic checkpoints disabled</td>

0 commit comments

Comments
 (0)