@@ -88,7 +88,7 @@ public class CheckpointStatistics implements ResponseBody {
88
88
89
89
public static final String FIELD_NAME_IS_SAVEPOINT = "is_savepoint" ;
90
90
91
- public static final String FIELD_NAME_IS_FULL_CHECKPOINT = "is_full_checkpoint " ;
91
+ public static final String FIELD_NAME_IS_INCREMENTAL_CHECKPOINT = "is_incremental_checkpoint " ;
92
92
93
93
public static final String FIELD_NAME_SAVEPOINT_FORMAT = "savepointFormat" ;
94
94
@@ -131,8 +131,8 @@ public class CheckpointStatistics implements ResponseBody {
131
131
@ JsonProperty (FIELD_NAME_IS_SAVEPOINT )
132
132
private final boolean savepoint ;
133
133
134
- @ JsonProperty (FIELD_NAME_IS_FULL_CHECKPOINT )
135
- private final boolean fullCheckpoint ;
134
+ @ JsonProperty (FIELD_NAME_IS_INCREMENTAL_CHECKPOINT )
135
+ private final boolean incrementalCheckpoint ;
136
136
137
137
@ JsonProperty (FIELD_NAME_SAVEPOINT_FORMAT )
138
138
@ Nullable
@@ -180,7 +180,7 @@ private CheckpointStatistics(
180
180
@ JsonProperty (FIELD_NAME_ID ) long id ,
181
181
@ JsonProperty (FIELD_NAME_STATUS ) CheckpointStatsStatus status ,
182
182
@ JsonProperty (FIELD_NAME_IS_SAVEPOINT ) boolean savepoint ,
183
- @ JsonProperty (FIELD_NAME_IS_FULL_CHECKPOINT ) boolean fullCheckpoint ,
183
+ @ JsonProperty (FIELD_NAME_IS_INCREMENTAL_CHECKPOINT ) boolean incrementalCheckpoint ,
184
184
@ JsonProperty (FIELD_NAME_SAVEPOINT_FORMAT ) String savepointFormat ,
185
185
@ JsonProperty (FIELD_NAME_TRIGGER_TIMESTAMP ) long triggerTimestamp ,
186
186
@ JsonProperty (FIELD_NAME_LATEST_ACK_TIMESTAMP ) long latestAckTimestamp ,
@@ -199,7 +199,7 @@ private CheckpointStatistics(
199
199
this .id = id ;
200
200
this .status = Preconditions .checkNotNull (status );
201
201
this .savepoint = savepoint ;
202
- this .fullCheckpoint = fullCheckpoint ;
202
+ this .incrementalCheckpoint = incrementalCheckpoint ;
203
203
this .savepointFormat = savepointFormat ;
204
204
this .triggerTimestamp = triggerTimestamp ;
205
205
this .latestAckTimestamp = latestAckTimestamp ;
@@ -227,8 +227,8 @@ public boolean isSavepoint() {
227
227
return savepoint ;
228
228
}
229
229
230
- public boolean isFullCheckpoint () {
231
- return fullCheckpoint ;
230
+ public boolean isIncrementalCheckpoint () {
231
+ return incrementalCheckpoint ;
232
232
}
233
233
234
234
public long getTriggerTimestamp () {
@@ -279,7 +279,7 @@ public boolean equals(Object o) {
279
279
CheckpointStatistics that = (CheckpointStatistics ) o ;
280
280
return id == that .id
281
281
&& savepoint == that .savepoint
282
- && fullCheckpoint == that .fullCheckpoint
282
+ && incrementalCheckpoint == that .incrementalCheckpoint
283
283
&& Objects .equals (savepointFormat , that .savepointFormat )
284
284
&& triggerTimestamp == that .triggerTimestamp
285
285
&& latestAckTimestamp == that .latestAckTimestamp
@@ -301,7 +301,7 @@ public int hashCode() {
301
301
id ,
302
302
status ,
303
303
savepoint ,
304
- fullCheckpoint ,
304
+ incrementalCheckpoint ,
305
305
savepointFormat ,
306
306
triggerTimestamp ,
307
307
latestAckTimestamp ,
@@ -365,7 +365,7 @@ public static CheckpointStatistics generateCheckpointStatistics(
365
365
completedCheckpointStats .getCheckpointId (),
366
366
completedCheckpointStats .getStatus (),
367
367
snapshotType .isSavepoint (),
368
- snapshotType .isFullCheckpoint (),
368
+ snapshotType .isIncrementalCheckpoint (),
369
369
savepointFormat ,
370
370
completedCheckpointStats .getTriggerTimestamp (),
371
371
completedCheckpointStats .getLatestAckTimestamp (),
@@ -391,7 +391,7 @@ public static CheckpointStatistics generateCheckpointStatistics(
391
391
failedCheckpointStats .getCheckpointId (),
392
392
failedCheckpointStats .getStatus (),
393
393
failedCheckpointStats .getProperties ().isSavepoint (),
394
- failedCheckpointStats .getProperties ().isFullCheckpoint (),
394
+ failedCheckpointStats .getProperties ().isIncrementalCheckpoint (),
395
395
savepointFormat ,
396
396
failedCheckpointStats .getTriggerTimestamp (),
397
397
failedCheckpointStats .getLatestAckTimestamp (),
@@ -417,7 +417,7 @@ public static CheckpointStatistics generateCheckpointStatistics(
417
417
pendingCheckpointStats .getCheckpointId (),
418
418
pendingCheckpointStats .getStatus (),
419
419
pendingCheckpointStats .getProperties ().isSavepoint (),
420
- pendingCheckpointStats .getProperties ().isFullCheckpoint (),
420
+ pendingCheckpointStats .getProperties ().isIncrementalCheckpoint (),
421
421
savepointFormat ,
422
422
pendingCheckpointStats .getTriggerTimestamp (),
423
423
pendingCheckpointStats .getLatestAckTimestamp (),
@@ -490,7 +490,7 @@ public CompletedCheckpointStatistics(
490
490
@ JsonProperty (FIELD_NAME_ID ) long id ,
491
491
@ JsonProperty (FIELD_NAME_STATUS ) CheckpointStatsStatus status ,
492
492
@ JsonProperty (FIELD_NAME_IS_SAVEPOINT ) boolean savepoint ,
493
- @ JsonProperty (FIELD_NAME_IS_FULL_CHECKPOINT ) boolean fullCheckpoint ,
493
+ @ JsonProperty (FIELD_NAME_IS_INCREMENTAL_CHECKPOINT ) boolean incrementalCheckpoint ,
494
494
@ JsonProperty (FIELD_NAME_SAVEPOINT_FORMAT ) String savepointFormat ,
495
495
@ JsonProperty (FIELD_NAME_TRIGGER_TIMESTAMP ) long triggerTimestamp ,
496
496
@ JsonProperty (FIELD_NAME_LATEST_ACK_TIMESTAMP ) long latestAckTimestamp ,
@@ -512,7 +512,7 @@ public CompletedCheckpointStatistics(
512
512
id ,
513
513
status ,
514
514
savepoint ,
515
- fullCheckpoint ,
515
+ incrementalCheckpoint ,
516
516
savepointFormat ,
517
517
triggerTimestamp ,
518
518
latestAckTimestamp ,
@@ -580,7 +580,7 @@ public FailedCheckpointStatistics(
580
580
@ JsonProperty (FIELD_NAME_ID ) long id ,
581
581
@ JsonProperty (FIELD_NAME_STATUS ) CheckpointStatsStatus status ,
582
582
@ JsonProperty (FIELD_NAME_IS_SAVEPOINT ) boolean savepoint ,
583
- @ JsonProperty (FIELD_NAME_IS_FULL_CHECKPOINT ) boolean fullCheckpoint ,
583
+ @ JsonProperty (FIELD_NAME_IS_INCREMENTAL_CHECKPOINT ) boolean incrementalCheckpoint ,
584
584
@ JsonProperty (FIELD_NAME_SAVEPOINT_FORMAT ) String savepointFormat ,
585
585
@ JsonProperty (FIELD_NAME_TRIGGER_TIMESTAMP ) long triggerTimestamp ,
586
586
@ JsonProperty (FIELD_NAME_LATEST_ACK_TIMESTAMP ) long latestAckTimestamp ,
@@ -602,7 +602,7 @@ public FailedCheckpointStatistics(
602
602
id ,
603
603
status ,
604
604
savepoint ,
605
- fullCheckpoint ,
605
+ incrementalCheckpoint ,
606
606
savepointFormat ,
607
607
triggerTimestamp ,
608
608
latestAckTimestamp ,
@@ -660,7 +660,7 @@ public PendingCheckpointStatistics(
660
660
@ JsonProperty (FIELD_NAME_ID ) long id ,
661
661
@ JsonProperty (FIELD_NAME_STATUS ) CheckpointStatsStatus status ,
662
662
@ JsonProperty (FIELD_NAME_IS_SAVEPOINT ) boolean savepoint ,
663
- @ JsonProperty (FIELD_NAME_IS_FULL_CHECKPOINT ) boolean fullCheckpoint ,
663
+ @ JsonProperty (FIELD_NAME_IS_INCREMENTAL_CHECKPOINT ) boolean incrementalCheckpoint ,
664
664
@ JsonProperty (FIELD_NAME_SAVEPOINT_FORMAT ) String savepointFormat ,
665
665
@ JsonProperty (FIELD_NAME_TRIGGER_TIMESTAMP ) long triggerTimestamp ,
666
666
@ JsonProperty (FIELD_NAME_LATEST_ACK_TIMESTAMP ) long latestAckTimestamp ,
@@ -680,7 +680,7 @@ public PendingCheckpointStatistics(
680
680
id ,
681
681
status ,
682
682
savepoint ,
683
- fullCheckpoint ,
683
+ incrementalCheckpoint ,
684
684
savepointFormat ,
685
685
triggerTimestamp ,
686
686
latestAckTimestamp ,
0 commit comments