Skip to content

Commit a52050f

Browse files
committed
[FLINK-38899][runtime-web] Introduce the Rescales/History sub-page for streaming jobs with the adaptive scheduler enabled - Temporary commit for review (Changed the refresh function)
1 parent 6f8d480 commit a52050f

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
[nzSize]="'small'"
2222
[nzAnimated]="{ inkBar: true, tabPane: false }"
2323
[nzTabBarExtraContent]="extraTemplate"
24+
(nzSelectedIndexChange)="refresh()"
2425
>
2526
<nz-tab nzTitle="History">
2627
<nz-table
@@ -216,7 +217,7 @@ <h3><strong>Rescale Details</strong></h3>
216217
{{ truncateName(vertex.value.jobVertexName) }}
217218
</td>
218219
<td>{{ vertex.value.preRescaleParallelism }}</td>
219-
<td>{{ vertex.value.postRescaleParallelism }}</td>
220+
<td>{{ vertex.value.postRescaleParallelism || '-' }}</td>
220221
<td>{{ vertex.value.desiredParallelism }}</td>
221222
<td>{{ vertex.value.sufficientParallelism }}</td>
222223
<td nz-tooltip [nzTooltipTitle]="vertex.value.slotSharingGroupId">
@@ -294,7 +295,7 @@ <h3><strong>Rescale Details</strong></h3>
294295
</td>
295296
<td>{{ slot.value.slotSharingGroupName }}</td>
296297
<td>{{ slot.value.preRescaleSlots }}</td>
297-
<td>{{ slot.value.postRescaleSlots }}</td>
298+
<td>{{ slot.value.postRescaleSlots || '-' }}</td>
298299
<td>{{ slot.value.desiredSlots }}</td>
299300
<td>{{ slot.value.minimalRequiredSlots }}</td>
300301
<td>

0 commit comments

Comments
 (0)