[GitHub] flink pull request #3305: [FLINK-5790][StateBackend] Use list types when Lis...

2017-02-15 Thread asfgit
Github user asfgit closed the pull request at: https://github.com/apache/flink/pull/3305 --- 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 feature is

[GitHub] flink pull request #3305: [FLINK-5790][StateBackend] Use list types when Lis...

2017-02-14 Thread tillrohrmann
Github user tillrohrmann commented on a diff in the pull request: https://github.com/apache/flink/pull/3305#discussion_r101070598 --- Diff: flink-core/src/main/java/org/apache/flink/api/java/typeutils/ListTypeInfo.java --- @@ -0,0 +1,116 @@ +/* + * Licensed to the Apache

[GitHub] flink pull request #3305: [FLINK-5790][StateBackend] Use list types when Lis...

2017-02-14 Thread tillrohrmann
Github user tillrohrmann commented on a diff in the pull request: https://github.com/apache/flink/pull/3305#discussion_r101070139 --- Diff: flink-core/src/main/java/org/apache/flink/api/common/typeutils/base/ListSerializer.java --- @@ -0,0 +1,131 @@ +/* + * Licensed to

[GitHub] flink pull request #3305: [FLINK-5790][StateBackend] Use list types when Lis...

2017-02-14 Thread tillrohrmann
Github user tillrohrmann commented on a diff in the pull request: https://github.com/apache/flink/pull/3305#discussion_r101068466 --- Diff: flink-core/src/main/java/org/apache/flink/api/common/typeutils/base/ListSerializer.java --- @@ -0,0 +1,131 @@ +/* + * Licensed to

[GitHub] flink pull request #3305: [FLINK-5790][StateBackend] Use list types when Lis...

2017-02-14 Thread tillrohrmann
Github user tillrohrmann commented on a diff in the pull request: https://github.com/apache/flink/pull/3305#discussion_r101068148 --- Diff: flink-core/src/main/java/org/apache/flink/api/common/state/ListStateDescriptor.java --- @@ -40,20 +44,22 @@ * consider using the

[GitHub] flink pull request #3305: [FLINK-5790][StateBackend] Use list types when Lis...

2017-02-14 Thread tillrohrmann
Github user tillrohrmann commented on a diff in the pull request: https://github.com/apache/flink/pull/3305#discussion_r101071253 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/state/ArrayListSerializer.java --- @@ -109,8 +113,8 @@ public void copy(DataInputView

[GitHub] flink pull request #3305: [FLINK-5790][StateBackend] Use list types when Lis...

2017-02-14 Thread tillrohrmann
Github user tillrohrmann commented on a diff in the pull request: https://github.com/apache/flink/pull/3305#discussion_r101067289 --- Diff: flink-core/src/main/java/org/apache/flink/api/common/state/ListStateDescriptor.java --- @@ -62,10 +68,19 @@ public

[GitHub] flink pull request #3305: [FLINK-5790][StateBackend] Use list types when Lis...

2017-02-14 Thread tillrohrmann
Github user tillrohrmann commented on a diff in the pull request: https://github.com/apache/flink/pull/3305#discussion_r101070284 --- Diff: flink-core/src/main/java/org/apache/flink/api/java/typeutils/ListTypeInfo.java --- @@ -0,0 +1,116 @@ +/* + * Licensed to the Apache

[GitHub] flink pull request #3305: [FLINK-5790][StateBackend] Use list types when Lis...

2017-02-14 Thread tillrohrmann
Github user tillrohrmann commented on a diff in the pull request: https://github.com/apache/flink/pull/3305#discussion_r101070404 --- Diff: flink-core/src/main/java/org/apache/flink/api/java/typeutils/ListTypeInfo.java --- @@ -0,0 +1,116 @@ +/* + * Licensed to the Apache

[GitHub] flink pull request #3305: [FLINK-5790][StateBackend] Use list types when Lis...

2017-02-14 Thread tillrohrmann
Github user tillrohrmann commented on a diff in the pull request: https://github.com/apache/flink/pull/3305#discussion_r101070858 --- Diff: flink-core/src/main/java/org/apache/flink/api/java/typeutils/ListTypeInfo.java --- @@ -0,0 +1,116 @@ +/* + * Licensed to the Apache

[GitHub] flink pull request #3305: [FLINK-5790][StateBackend] Use list types when Lis...

2017-02-14 Thread StephanEwen
Github user StephanEwen commented on a diff in the pull request: https://github.com/apache/flink/pull/3305#discussion_r101008561 --- Diff: flink-core/src/main/java/org/apache/flink/api/common/typeutils/base/ArrayListSerializer.java --- @@ -108,9 +112,13 @@ public void

[GitHub] flink pull request #3305: [FLINK-5790][StateBackend] Use list types when Lis...

2017-02-14 Thread StephanEwen
Github user StephanEwen commented on a diff in the pull request: https://github.com/apache/flink/pull/3305#discussion_r101009073 --- Diff: flink-core/src/main/java/org/apache/flink/api/java/typeutils/ArrayListTypeInfo.java --- @@ -0,0 +1,116 @@ +/* + * Licensed to the

[GitHub] flink pull request #3305: [FLINK-5790][StateBackend] Use list types when Lis...

2017-02-13 Thread shixiaogang
Github user shixiaogang commented on a diff in the pull request: https://github.com/apache/flink/pull/3305#discussion_r100967108 --- Diff: flink-core/src/main/java/org/apache/flink/migration/util/MigrationInstantiationUtil.java --- @@ -47,9 +47,16 @@ public

[GitHub] flink pull request #3305: [FLINK-5790][StateBackend] Use list types when Lis...

2017-02-13 Thread shixiaogang
GitHub user shixiaogang opened a pull request: https://github.com/apache/flink/pull/3305 [FLINK-5790][StateBackend] Use list types when ListStateDescriptor extends StateDescriptor 1. Now the state serializer, instead of the element serializer, is stored in `ListStateDescriptor`.