You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: flink-libraries/flink-state-processing-api/src/main/java/org/apache/flink/state/api/KeyedOperatorTransformation.java
+14-2
Original file line number
Diff line number
Diff line change
@@ -47,6 +47,9 @@ public class KeyedOperatorTransformation<K, T> {
47
47
/** The data set containing the data to bootstrap the operator state with. */
48
48
privatefinalDataSet<T> dataSet;
49
49
50
+
/** Checkpoint ID. */
51
+
privatefinallongcheckpointId;
52
+
50
53
/** Local max parallelism for the bootstrapped operator. */
51
54
privatefinalOptionalIntoperatorMaxParallelism;
52
55
@@ -60,11 +63,13 @@ public class KeyedOperatorTransformation<K, T> {
Copy file name to clipboardexpand all lines: flink-libraries/flink-state-processing-api/src/main/java/org/apache/flink/state/api/KeyedStateTransformation.java
+8-2
Original file line number
Diff line number
Diff line change
@@ -43,6 +43,9 @@ public class KeyedStateTransformation<K, T> {
43
43
/** The data set containing the data to bootstrap the operator state with. */
44
44
privatefinalDataStream<T> stream;
45
45
46
+
/** Checkpoint ID. */
47
+
privatefinallongcheckpointId;
48
+
46
49
/** Local max parallelism for the bootstrapped operator. */
47
50
privatefinalOptionalIntoperatorMaxParallelism;
48
51
@@ -54,10 +57,12 @@ public class KeyedStateTransformation<K, T> {
Copy file name to clipboardexpand all lines: flink-libraries/flink-state-processing-api/src/main/java/org/apache/flink/state/api/OneInputOperatorTransformation.java
+16-5
Original file line number
Diff line number
Diff line change
@@ -55,13 +55,21 @@ public class OneInputOperatorTransformation<T> {
55
55
/** The data set containing the data to bootstrap the operator state with. */
56
56
privatefinalDataSet<T> dataSet;
57
57
58
+
/** Checkpoint ID. */
59
+
privatefinallongcheckpointId;
60
+
58
61
/** Local max parallelism for the bootstrapped operator. */
Copy file name to clipboardexpand all lines: flink-libraries/flink-state-processing-api/src/main/java/org/apache/flink/state/api/OneInputStateTransformation.java
+19-5
Original file line number
Diff line number
Diff line change
@@ -48,11 +48,19 @@ public class OneInputStateTransformation<T> {
48
48
/** The data stream containing the data to bootstrap the operator state with. */
49
49
privatefinalDataStream<T> stream;
50
50
51
+
/** Checkpoint ID. */
52
+
privatefinallongcheckpointId;
53
+
51
54
/** Local max parallelism for the bootstrapped operator. */
Copy file name to clipboardexpand all lines: flink-libraries/flink-state-processing-api/src/main/java/org/apache/flink/state/api/OperatorTransformation.java
+29
Original file line number
Diff line number
Diff line change
@@ -71,6 +71,22 @@ public static <T> OneInputOperatorTransformation<T> bootstrapWith(DataSet<T> dat
0 commit comments