[GitHub] flink pull request #4353: [FLINK-7213] Introduce state management by Operato...

2017-08-15 Thread StefanRRichter
Github user StefanRRichter closed the pull request at: https://github.com/apache/flink/pull/4353 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the

[GitHub] flink pull request #4353: [FLINK-7213] Introduce state management by Operato...

2017-08-14 Thread StefanRRichter
Github user StefanRRichter commented on a diff in the pull request: https://github.com/apache/flink/pull/4353#discussion_r133027325 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/checkpoint/TaskStateSnapshot.java --- @@ -0,0 +1,139 @@ +/* + * Licensed to

[GitHub] flink pull request #4353: [FLINK-7213] Introduce state management by Operato...

2017-08-14 Thread StefanRRichter
Github user StefanRRichter commented on a diff in the pull request: https://github.com/apache/flink/pull/4353#discussion_r133026125 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/checkpoint/TaskStateSnapshot.java --- @@ -0,0 +1,139 @@ +/* + * Licensed to

[GitHub] flink pull request #4353: [FLINK-7213] Introduce state management by Operato...

2017-08-14 Thread StephanEwen
Github user StephanEwen commented on a diff in the pull request: https://github.com/apache/flink/pull/4353#discussion_r133010887 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/checkpoint/TaskStateSnapshot.java --- @@ -0,0 +1,139 @@ +/* + * Licensed to the

[GitHub] flink pull request #4353: [FLINK-7213] Introduce state management by Operato...

2017-08-14 Thread StephanEwen
Github user StephanEwen commented on a diff in the pull request: https://github.com/apache/flink/pull/4353#discussion_r133021771 --- Diff: flink-runtime/src/test/java/org/apache/flink/runtime/checkpoint/CheckpointCoordinatorTest.java --- @@ -878,14 +873,17 @@ public void

[GitHub] flink pull request #4353: [FLINK-7213] Introduce state management by Operato...

2017-08-14 Thread StephanEwen
Github user StephanEwen commented on a diff in the pull request: https://github.com/apache/flink/pull/4353#discussion_r133013315 --- Diff: flink-contrib/flink-statebackend-rocksdb/src/test/java/org/apache/flink/contrib/streaming/state/RocksDBAsyncSnapshotTest.java --- @@ -164,8

[GitHub] flink pull request #4353: [FLINK-7213] Introduce state management by Operato...

2017-08-14 Thread StephanEwen
Github user StephanEwen commented on a diff in the pull request: https://github.com/apache/flink/pull/4353#discussion_r133021720 --- Diff: flink-runtime/src/test/java/org/apache/flink/runtime/checkpoint/CheckpointCoordinatorTest.java --- @@ -850,18 +843,20 @@ public void

[GitHub] flink pull request #4353: [FLINK-7213] Introduce state management by Operato...

2017-08-14 Thread StephanEwen
Github user StephanEwen commented on a diff in the pull request: https://github.com/apache/flink/pull/4353#discussion_r133009796 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/checkpoint/TaskStateSnapshot.java --- @@ -0,0 +1,139 @@ +/* + * Licensed to the

[GitHub] flink pull request #4353: [FLINK-7213] Introduce state management by Operato...

2017-08-14 Thread StephanEwen
Github user StephanEwen commented on a diff in the pull request: https://github.com/apache/flink/pull/4353#discussion_r133018189 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/checkpoint/StateAssignmentOperation.java --- @@ -185,44 +184,66 @@ private void

[GitHub] flink pull request #4353: [FLINK-7213] Introduce state management by Operato...

2017-08-14 Thread StephanEwen
Github user StephanEwen commented on a diff in the pull request: https://github.com/apache/flink/pull/4353#discussion_r133016663 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/checkpoint/OperatorSubtaskState.java --- @@ -75,31 +103,79 @@ */

[GitHub] flink pull request #4353: [FLINK-7213] Introduce state management by Operato...

2017-08-14 Thread StephanEwen
Github user StephanEwen commented on a diff in the pull request: https://github.com/apache/flink/pull/4353#discussion_r133022095 --- Diff: flink-runtime/src/test/java/org/apache/flink/runtime/checkpoint/CheckpointCoordinatorTest.java --- @@ -553,31 +551,29 @@ public void

[GitHub] flink pull request #4353: [FLINK-7213] Introduce state management by Operato...

2017-07-31 Thread StephanEwen
Github user StephanEwen commented on a diff in the pull request: https://github.com/apache/flink/pull/4353#discussion_r130295736 --- Diff: flink-streaming-java/src/main/java/org/apache/flink/streaming/api/operators/AbstractStreamOperator.java --- @@ -208,13 +208,13 @@ public

[GitHub] flink pull request #4353: [FLINK-7213] Introduce state management by Operato...

2017-07-26 Thread StefanRRichter
Github user StefanRRichter commented on a diff in the pull request: https://github.com/apache/flink/pull/4353#discussion_r129532719 --- Diff: flink-streaming-java/src/main/java/org/apache/flink/streaming/api/operators/AbstractStreamOperator.java --- @@ -208,13 +208,13 @@ public

[GitHub] flink pull request #4353: [FLINK-7213] Introduce state management by Operato...

2017-07-25 Thread zentol
Github user zentol commented on a diff in the pull request: https://github.com/apache/flink/pull/4353#discussion_r129272281 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/checkpoint/TaskStateSnapshot.java --- @@ -0,0 +1,137 @@ +/* + * Licensed to the

[GitHub] flink pull request #4353: [FLINK-7213] Introduce state management by Operato...

2017-07-25 Thread zentol
Github user zentol commented on a diff in the pull request: https://github.com/apache/flink/pull/4353#discussion_r129277176 --- Diff: flink-streaming-java/src/main/java/org/apache/flink/streaming/runtime/tasks/StreamTask.java --- @@ -867,81 +845,60 @@ public String toString() {

[GitHub] flink pull request #4353: [FLINK-7213] Introduce state management by Operato...

2017-07-25 Thread zentol
Github user zentol commented on a diff in the pull request: https://github.com/apache/flink/pull/4353#discussion_r129272254 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/checkpoint/TaskStateSnapshot.java --- @@ -0,0 +1,137 @@ +/* + * Licensed to the

[GitHub] flink pull request #4353: [FLINK-7213] Introduce state management by Operato...

2017-07-25 Thread zentol
Github user zentol commented on a diff in the pull request: https://github.com/apache/flink/pull/4353#discussion_r129275823 --- Diff: flink-streaming-java/src/main/java/org/apache/flink/streaming/api/operators/AbstractStreamOperator.java --- @@ -208,13 +208,13 @@ public

[GitHub] flink pull request #4353: [FLINK-7213] Introduce state management by Operato...

2017-07-25 Thread zentol
Github user zentol commented on a diff in the pull request: https://github.com/apache/flink/pull/4353#discussion_r129278519 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/checkpoint/OperatorSubtaskState.java --- @@ -18,20 +18,43 @@ package

[GitHub] flink pull request #4353: [FLINK-7213] Introduce state management by Operato...

2017-07-25 Thread zentol
Github user zentol commented on a diff in the pull request: https://github.com/apache/flink/pull/4353#discussion_r129274874 --- Diff: flink-runtime/src/test/java/org/apache/flink/runtime/checkpoint/CheckpointStateRestoreTest.java --- @@ -118,10 +118,22 @@ public void

[GitHub] flink pull request #4353: [FLINK-7213] Introduce state management by Operato...

2017-07-25 Thread zentol
Github user zentol commented on a diff in the pull request: https://github.com/apache/flink/pull/4353#discussion_r129269706 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/checkpoint/RoundRobinOperatorStateRepartitioner.java --- @@ -89,6 +89,10 @@ private

[GitHub] flink pull request #4353: [FLINK-7213] Introduce state management by Operato...

2017-07-25 Thread zentol
Github user zentol commented on a diff in the pull request: https://github.com/apache/flink/pull/4353#discussion_r129274620 --- Diff: flink-runtime/src/test/java/org/apache/flink/runtime/checkpoint/CheckpointCoordinatorTest.java --- @@ -3631,16 +3673,16 @@ public void

[GitHub] flink pull request #4353: [FLINK-7213] Introduce state management by Operato...

2017-07-25 Thread zentol
Github user zentol commented on a diff in the pull request: https://github.com/apache/flink/pull/4353#discussion_r129278337 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/checkpoint/OperatorSubtaskState.java --- @@ -75,31 +103,84 @@ */ private

[GitHub] flink pull request #4353: [FLINK-7213] Introduce state management by Operato...

2017-07-25 Thread StefanRRichter
Github user StefanRRichter commented on a diff in the pull request: https://github.com/apache/flink/pull/4353#discussion_r129266693 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/checkpoint/OperatorSubtaskState.java --- @@ -18,20 +18,40 @@ package

[GitHub] flink pull request #4353: [FLINK-7213] Introduce state management by Operato...

2017-07-24 Thread zentol
Github user zentol commented on a diff in the pull request: https://github.com/apache/flink/pull/4353#discussion_r129019373 --- Diff: flink-contrib/flink-statebackend-rocksdb/src/test/java/org/apache/flink/contrib/streaming/state/RocksDBAsyncSnapshotTest.java --- @@ -164,8

[GitHub] flink pull request #4353: [FLINK-7213] Introduce state management by Operato...

2017-07-24 Thread zentol
Github user zentol commented on a diff in the pull request: https://github.com/apache/flink/pull/4353#discussion_r129020085 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/checkpoint/OperatorSubtaskState.java --- @@ -164,6 +269,7 @@ public long getStateSize() {

[GitHub] flink pull request #4353: [FLINK-7213] Introduce state management by Operato...

2017-07-24 Thread zentol
Github user zentol commented on a diff in the pull request: https://github.com/apache/flink/pull/4353#discussion_r129020863 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/checkpoint/OperatorSubtaskState.java --- @@ -18,20 +18,40 @@ package

[GitHub] flink pull request #4353: [FLINK-7213] Introduce state management by Operato...

2017-07-17 Thread zentol
Github user zentol commented on a diff in the pull request: https://github.com/apache/flink/pull/4353#discussion_r127709120 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/checkpoint/OperatorSubtaskState.java --- @@ -18,20 +18,40 @@ package

[GitHub] flink pull request #4353: [FLINK-7213] Introduce state management by Operato...

2017-07-17 Thread zentol
Github user zentol commented on a diff in the pull request: https://github.com/apache/flink/pull/4353#discussion_r127708906 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/checkpoint/OperatorSubtaskState.java --- @@ -18,20 +18,40 @@ package

[GitHub] flink pull request #4353: [FLINK-7213] Introduce state management by Operato...

2017-07-17 Thread StefanRRichter
GitHub user StefanRRichter opened a pull request: https://github.com/apache/flink/pull/4353 [FLINK-7213] Introduce state management by OperatorID in TaskManager Flink-5892 introduced the job manager / checkpoint coordinator part of managing state on the operator level instead of