[GitHub] flink issue #5584: [FLINK-8787][flip6] WIP Deploying FLIP-6 YARN session wit...

2018-02-26 Thread GJL
Github user GJL commented on the issue: https://github.com/apache/flink/pull/5584 test failures due to ``` // logback + log4j, with/out krb5, different JVM opts // IMPORTANT: Be aware that we are using side effects here to modify the created YarnClusterDescriptor

[GitHub] flink pull request #5584: [FLINK-8787][flip6] WIP

2018-02-26 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5584#discussion_r170679952 --- Diff: flink-yarn/src/main/java/org/apache/flink/yarn/AbstractYarnClusterDescriptor.java --- @@ -186,7 +187,7 @@ public YarnClient getYarnClient

[GitHub] flink pull request #5584: [FLINK-8787][flip6] WIP

2018-02-26 Thread GJL
GitHub user GJL opened a pull request: https://github.com/apache/flink/pull/5584 [FLINK-8787][flip6] WIP WIP ## What is the purpose of the change *(For example: This pull request makes task deployment go through the blob server, rather than through RPC. That way

[GitHub] flink issue #5573: [FLINK-8756][Client] Support ClusterClient.getAccumulator...

2018-02-26 Thread GJL
Github user GJL commented on the issue: https://github.com/apache/flink/pull/5573 @yanghua I talked to @tillrohrmann offline, and we decided it is enough to add a query parameter such as `includeSerializedValue` to the `JobAccumulatorsHandler`. If `includeSerializedValue

[GitHub] flink issue #5573: [FLINK-8756][Client] Support ClusterClient.getAccumulator...

2018-02-26 Thread GJL
Github user GJL commented on the issue: https://github.com/apache/flink/pull/5573 I agree with @aljoscha. We should not add more `public` methods to `ClusterClient`. Implementing `getAccumulators()` in `RestClusterClient` is enough. Regarding the `JobAccumulatorsHandler

[GitHub] flink pull request #5577: [FLINK-8776][flip6] Use correct port for job submi...

2018-02-26 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5577#discussion_r170537772 --- Diff: flink-runtime/src/test/java/org/apache/flink/runtime/leaderretrieval/SettableLeaderRetrievalServiceTest.java --- @@ -0,0 +1,66

[GitHub] flink pull request #5577: [FLINK-8776][flip6] Use correct port for job submi...

2018-02-26 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5577#discussion_r170537784 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/leaderretrieval/SettableLeaderRetrievalService.java --- @@ -16,36 +16,34 @@ * limitations

[GitHub] flink issue #5573: [FLINK-8756][Client] Support ClusterClient.getAccumulator...

2018-02-25 Thread GJL
Github user GJL commented on the issue: https://github.com/apache/flink/pull/5573 @yanghua Take a look at `SerializedValueDeserializer` and `SerializedValueSerializer`. You can use `@JsonSerialize(using= ... )`, `@JsonSerialize(keyUsing= ... )`, and `@JsonDeserialize` to specify

[GitHub] flink pull request #5577: [FLINK-8776][flip6] Use correct port for job submi...

2018-02-25 Thread GJL
GitHub user GJL opened a pull request: https://github.com/apache/flink/pull/5577 [FLINK-8776][flip6] Use correct port for job submission from Web UI ## What is the purpose of the change *Use correct port for job submission from Web UI when Flink is deployed in YARN session

[GitHub] flink pull request #5545: [FLINK-8718][DataStream] Set maxParallelism on non...

2018-02-25 Thread GJL
Github user GJL closed the pull request at: https://github.com/apache/flink/pull/5545 ---

[GitHub] flink pull request #5560: [FLINK-8746] [flip6] Rescale partially running job...

2018-02-23 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5560#discussion_r170279814 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/jobmaster/JobMaster.java --- @@ -1156,6 +1213,26 @@ private void disposeSavepoint(String

[GitHub] flink pull request #5560: [FLINK-8746] [flip6] Rescale partially running job...

2018-02-23 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5560#discussion_r170296322 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/checkpoint/CheckpointTriggerException.java --- @@ -0,0 +1,42 @@ +/* + * Licensed

[GitHub] flink pull request #5560: [FLINK-8746] [flip6] Rescale partially running job...

2018-02-23 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5560#discussion_r170296168 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/checkpoint/CheckpointTriggerException.java --- @@ -0,0 +1,42 @@ +/* + * Licensed

[GitHub] flink pull request #5560: [FLINK-8746] [flip6] Rescale partially running job...

2018-02-23 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5560#discussion_r170300254 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/jobmaster/JobMaster.java --- @@ -534,42 +536,94 @@ public void postStop() throws Exception

[GitHub] flink pull request #5560: [FLINK-8746] [flip6] Rescale partially running job...

2018-02-23 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5560#discussion_r170281192 --- Diff: flink-runtime/src/test/java/org/apache/flink/runtime/taskmanager/TaskAsyncCallTest.java --- @@ -289,7 +290,7 @@ public void invoke() throws Exception

[GitHub] flink pull request #5566: [FLINK-8754][flip6] Make TaskManagerInfo implement...

2018-02-23 Thread GJL
GitHub user GJL opened a pull request: https://github.com/apache/flink/pull/5566 [FLINK-8754][flip6] Make TaskManagerInfo implement Serializable ## What is the purpose of the change *`TaskManagerInfo` can be returned from RPC calls, e.g., `ResourceManagerGateway

[GitHub] flink pull request #5487: [FLINK-8656] [flip6] Add modify CLI command to res...

2018-02-22 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5487#discussion_r170179361 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/jobmaster/JobMaster.java --- @@ -447,6 +453,165 @@ public void postStop() throws Exception

[GitHub] flink pull request #5487: [FLINK-8656] [flip6] Add modify CLI command to res...

2018-02-22 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5487#discussion_r170179289 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/rest/messages/RescaleParallelismQueryParameter.java --- @@ -0,0 +1,41

[GitHub] flink pull request #5487: [FLINK-8656] [flip6] Add modify CLI command to res...

2018-02-22 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5487#discussion_r170179272 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/jobmaster/JobMaster.java --- @@ -447,6 +453,165 @@ public void postStop() throws Exception

[GitHub] flink issue #5487: [FLINK-8656] [flip6] Add modify CLI command to rescale Fl...

2018-02-22 Thread GJL
Github user GJL commented on the issue: https://github.com/apache/flink/pull/5487 I had these comments as well that were hidden: ![image](https://user-images.githubusercontent.com/1681921/36565125-d2dd1d52-181f-11e8-8dd7-ea25de6cacad.png) ---

[GitHub] flink issue #5557: [FLINK-8694][runtime] Walkaround notifyDataAvailable race...

2018-02-22 Thread GJL
Github user GJL commented on the issue: https://github.com/apache/flink/pull/5557 I think you mean work-around https://www.merriam-webster.com/dictionary/work-around ---

[GitHub] flink pull request #5548: [FLINK-8732] [flip6] Cancel ongoing scheduling ope...

2018-02-22 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5548#discussion_r169949268 --- Diff: flink-runtime/src/test/java/org/apache/flink/runtime/executiongraph/ExecutionGraphSchedulingTest.java --- @@ -412,6 +417,54 @@ public void

[GitHub] flink pull request #5548: [FLINK-8732] [flip6] Cancel ongoing scheduling ope...

2018-02-22 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5548#discussion_r169943180 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/executiongraph/Execution.java --- @@ -377,14 +377,14 @@ public boolean scheduleForExecution

[GitHub] flink pull request #5487: [FLINK-8656] [flip6] Add modify CLI command to res...

2018-02-22 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5487#discussion_r169922284 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/rest/messages/RescaleParallelismQueryParameter.java --- @@ -0,0 +1,41

[GitHub] flink pull request #5487: [FLINK-8656] [flip6] Add modify CLI command to res...

2018-02-22 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5487#discussion_r169916387 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/jobmaster/JobMaster.java --- @@ -447,6 +453,165 @@ public void postStop() throws Exception

[GitHub] flink pull request #5487: [FLINK-8656] [flip6] Add modify CLI command to res...

2018-02-22 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5487#discussion_r169634082 --- Diff: flink-core/src/main/java/org/apache/flink/util/function/BiConsumerWithException.java --- @@ -0,0 +1,50 @@ +/* + * Licensed to the Apache

[GitHub] flink pull request #5487: [FLINK-8656] [flip6] Add modify CLI command to res...

2018-02-22 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5487#discussion_r169919835 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/rest/messages/RescaleParallelismQueryParameter.java --- @@ -0,0 +1,41

[GitHub] flink pull request #5487: [FLINK-8656] [flip6] Add modify CLI command to res...

2018-02-22 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5487#discussion_r169918052 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/jobmaster/JobMaster.java --- @@ -447,6 +453,165 @@ public void postStop() throws Exception

[GitHub] flink pull request #5487: [FLINK-8656] [flip6] Add modify CLI command to res...

2018-02-22 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5487#discussion_r169918959 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/rest/handler/async/AsynchronousOperationInfo.java --- @@ -0,0 +1,64 @@ +/* + * Licensed

[GitHub] flink pull request #5487: [FLINK-8656] [flip6] Add modify CLI command to res...

2018-02-22 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5487#discussion_r169913228 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/jobmaster/JobMaster.java --- @@ -963,6 +1120,36 @@ private Acknowledge suspendExecution(final

[GitHub] flink pull request #5487: [FLINK-8656] [flip6] Add modify CLI command to res...

2018-02-22 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5487#discussion_r169912256 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/jobmaster/JobMaster.java --- @@ -447,6 +453,165 @@ public void postStop() throws Exception

[GitHub] flink pull request #5487: [FLINK-8656] [flip6] Add modify CLI command to res...

2018-02-22 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5487#discussion_r169911850 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/jobmaster/JobMaster.java --- @@ -447,6 +453,165 @@ public void postStop() throws Exception

[GitHub] flink pull request #5487: [FLINK-8656] [flip6] Add modify CLI command to res...

2018-02-22 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5487#discussion_r169920801 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/rest/handler/job/RescalingStatusMessageParameters.java --- @@ -0,0 +1,39

[GitHub] flink pull request #5487: [FLINK-8656] [flip6] Add modify CLI command to res...

2018-02-22 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5487#discussion_r169632755 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/jobmaster/RescalingBehaviour.java --- @@ -0,0 +1,49 @@ +/* + * Licensed to the Apache

[GitHub] flink pull request #5487: [FLINK-8656] [flip6] Add modify CLI command to res...

2018-02-22 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5487#discussion_r169917224 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/jobmaster/JobMaster.java --- @@ -447,6 +453,165 @@ public void postStop() throws Exception

[GitHub] flink pull request #5487: [FLINK-8656] [flip6] Add modify CLI command to res...

2018-02-22 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5487#discussion_r169917845 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/jobmaster/JobMaster.java --- @@ -447,6 +453,165 @@ public void postStop() throws Exception

[GitHub] flink issue #5545: [FLINK-8718][DataStream] Set maxParallelism on non-parall...

2018-02-21 Thread GJL
Github user GJL commented on the issue: https://github.com/apache/flink/pull/5545 The test relies on being able to set setParallelism on a non-parallel source: `DataStream input1 = env.fromElements(1, 2, 3, 4).setMaxParallelism(128);` ---

[GitHub] flink pull request #5451: [FLINK-8632] [flip6] Introduce generalized asynchr...

2018-02-21 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5451#discussion_r169687251 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/rest/handler/job/savepoints/SavepointHandlers.java --- @@ -109,9 +97,7

[GitHub] flink pull request #5451: [FLINK-8632] [flip6] Introduce generalized asynchr...

2018-02-21 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5451#discussion_r169676080 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/rest/handler/job/savepoints/SavepointHandlers.java --- @@ -123,214 +109,112 @@ public

[GitHub] flink pull request #5451: [FLINK-8632] [flip6] Introduce generalized asynchr...

2018-02-21 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5451#discussion_r169694927 --- Diff: flink-runtime/src/test/java/org/apache/flink/runtime/rest/handler/async/AbstractAsynchronousOperationHandlersTest.java --- @@ -0,0 +1,350

[GitHub] flink pull request #5451: [FLINK-8632] [flip6] Introduce generalized asynchr...

2018-02-21 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5451#discussion_r169682725 --- Diff: flink-runtime/src/test/java/org/apache/flink/runtime/webmonitor/retriever/TestingGatewayRetriever.java --- @@ -0,0 +1,46 @@ +/* + * Licensed

[GitHub] flink pull request #5451: [FLINK-8632] [flip6] Introduce generalized asynchr...

2018-02-21 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5451#discussion_r169696196 --- Diff: flink-runtime/src/test/java/org/apache/flink/runtime/rest/handler/async/AbstractAsynchronousOperationHandlersTest.java --- @@ -0,0 +1,350

[GitHub] flink pull request #5451: [FLINK-8632] [flip6] Introduce generalized asynchr...

2018-02-21 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5451#discussion_r169675799 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/rest/handler/job/savepoints/SavepointHandlers.java --- @@ -123,214 +109,112 @@ public

[GitHub] flink pull request #5451: [FLINK-8632] [flip6] Introduce generalized asynchr...

2018-02-21 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5451#discussion_r169687850 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/rest/handler/async/AsynchronousOperationResult.java --- @@ -0,0 +1,74

[GitHub] flink issue #5545: [FLINK-8718][DataStream] Set maxParallelism on non-parall...

2018-02-21 Thread GJL
Github user GJL commented on the issue: https://github.com/apache/flink/pull/5545 I have test failures, e.g., ` StreamGraphGeneratorTest.testMaxParallelismWithConnectedKeyedStream` 😢 ---

[GitHub] flink pull request #5546: [FLINK-8730][REST] JSON serialize entire Serialize...

2018-02-21 Thread GJL
GitHub user GJL opened a pull request: https://github.com/apache/flink/pull/5546 [FLINK-8730][REST] JSON serialize entire SerializedThrowable ## What is the purpose of the change *For the JSON representation, do not only serialize the serialized exception but the entire

[GitHub] flink pull request #5545: [FLINK-8718][DataStream] Set maxParallelism on non...

2018-02-21 Thread GJL
GitHub user GJL opened a pull request: https://github.com/apache/flink/pull/5545 [FLINK-8718][DataStream] Set maxParallelism on non-parallel DataStreamSource ## What is the purpose of the change *Set maxParallelism to 1

[GitHub] flink issue #5487: [FLINK-8656] [flip6] Add modify CLI command to rescale Fl...

2018-02-20 Thread GJL
Github user GJL commented on the issue: https://github.com/apache/flink/pull/5487 After rescaling `SocketWindowWordCount`, the parallelism exposed by the REST API remains unchanged. Steps to reproduce: Start netcat. ``` nc -l 9001 ``` Submit job

[GitHub] flink pull request #5529: [FLINK-7712][flip6] Port JarDeleteHandler to new R...

2018-02-20 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5529#discussion_r169285404 --- Diff: flink-runtime-web/src/test/java/org/apache/flink/runtime/webmonitor/handlers/JarDeleteHeadersTest.java --- @@ -0,0 +1,42 @@ +/* + * Licensed

[GitHub] flink pull request #5529: [FLINK-7712][flip6] Port JarDeleteHandler to new R...

2018-02-20 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5529#discussion_r169285383 --- Diff: flink-runtime-web/src/test/java/org/apache/flink/runtime/webmonitor/handlers/JarIdPathParameterTest.java --- @@ -0,0 +1,53

[GitHub] flink pull request #5529: [FLINK-7712][flip6] Port JarDeleteHandler to new R...

2018-02-20 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5529#discussion_r169285350 --- Diff: flink-runtime-web/src/test/java/org/apache/flink/runtime/webmonitor/handlers/JarDeleteHandlerTest.java --- @@ -0,0 +1,151 @@ +/* + * Licensed

[GitHub] flink pull request #5533: [FLINK-7714][flip6] Port JarPlanHandler to new RES...

2018-02-20 Thread GJL
GitHub user GJL opened a pull request: https://github.com/apache/flink/pull/5533 [FLINK-7714][flip6] Port JarPlanHandler to new REST endpoint ## What is the purpose of the change *Enable showing job plan from the web job submission page.* This PR is based on #5529

[GitHub] flink pull request #5529: [FLINK-7712][flip6] Port JarDeleteHandler to new R...

2018-02-20 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5529#discussion_r169254360 --- Diff: flink-runtime-web/src/test/java/org/apache/flink/runtime/webmonitor/handlers/JarDeleteHeadersTest.java --- @@ -0,0 +1,42 @@ +/* + * Licensed

[GitHub] flink pull request #5529: [FLINK-7712][flip6] Port JarDeleteHandler to new R...

2018-02-20 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5529#discussion_r169254293 --- Diff: flink-runtime-web/src/test/java/org/apache/flink/runtime/webmonitor/handlers/JarDeleteHandlerTest.java --- @@ -0,0 +1,151 @@ +/* + * Licensed

[GitHub] flink pull request #5529: [FLINK-7712][flip6] Port JarDeleteHandler to new R...

2018-02-20 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5529#discussion_r169254320 --- Diff: flink-runtime-web/src/test/java/org/apache/flink/runtime/webmonitor/handlers/JarIdPathParameterTest.java --- @@ -0,0 +1,53

[GitHub] flink pull request #5529: [FLINK-7712][flip6] Port JarDeleteHandler to new R...

2018-02-19 Thread GJL
GitHub user GJL opened a pull request: https://github.com/apache/flink/pull/5529 [FLINK-7712][flip6] Port JarDeleteHandler to new REST endpoint ## What is the purpose of the change *Enable deletion of jars from Web UI in flip6 mode.* cc: @tillrohrmann

[GitHub] flink pull request #5451: [FLINK-8632] [flip6] Introduce generalized asynchr...

2018-02-19 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5451#discussion_r169071363 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/rest/handler/async/AbstractAsynchronousOperationHandlers.java --- @@ -0,0 +1,298

[GitHub] flink pull request #5509: [FLINK-7715][flip6] Port JarRunHandler to new REST...

2018-02-16 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5509#discussion_r168768261 --- Diff: flink-runtime-web/src/test/java/org/apache/flink/runtime/webmonitor/handlers/JarRunHandlerTest.java --- @@ -0,0 +1,99 @@ +/* + * Licensed

[GitHub] flink pull request #5509: [FLINK-7715][flip6] Port JarRunHandler to new REST...

2018-02-16 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5509#discussion_r168768024 --- Diff: flink-clients/src/main/java/org/apache/flink/client/cli/CliFrontend.java --- @@ -1126,7 +1126,7 @@ public static void setJobManagerAddressInConfig

[GitHub] flink pull request #5509: [FLINK-7715][flip6] Port JarRunHandler to new REST...

2018-02-16 Thread GJL
GitHub user GJL opened a pull request: https://github.com/apache/flink/pull/5509 [FLINK-7715][flip6] Port JarRunHandler to new REST endpoint ## What is the purpose of the change *Port JarRunHandler to new REST endpoint.* ## Brief change log - *Add

[GitHub] flink pull request #5437: [FLINK-8614] [flip6] Activate Flip-6 mode per defa...

2018-02-15 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5437#discussion_r168459950 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/dispatcher/Dispatcher.java --- @@ -402,6 +403,24 @@ public void start() throws Exception

[GitHub] flink pull request #5437: [FLINK-8614] [flip6] Activate Flip-6 mode per defa...

2018-02-15 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5437#discussion_r168461190 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/dispatcher/MiniDispatcher.java --- @@ -100,6 +101,18 @@ public MiniDispatcher

[GitHub] flink pull request #5493: [FLINK-7857][flip6] Port JobVertexDetails to REST ...

2018-02-15 Thread GJL
GitHub user GJL opened a pull request: https://github.com/apache/flink/pull/5493 [FLINK-7857][flip6] Port JobVertexDetails to REST endpoint ## What is the purpose of the change *Port JobVertexDetails to REST endpoint)* This PR is based on #5035 cc

[GitHub] flink issue #4893: [FLINK-7856][flip6] Port JobVertexBackPressureHandler to ...

2018-02-15 Thread GJL
Github user GJL commented on the issue: https://github.com/apache/flink/pull/4893 @zjureel Can you close this PR? Your changes were merged. ---

[GitHub] flink pull request #5430: [FLINK-8605] [rest] Enable job cancellation from t...

2018-02-15 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5430#discussion_r168420232 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/webmonitor/WebMonitorEndpoint.java --- @@ -593,6 +617,8 @@ public void shutdown(Time timeout

[GitHub] flink pull request #5455: [FLINK-7711][flip6] Port JarListHandler

2018-02-14 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5455#discussion_r168302562 --- Diff: flink-runtime-web/src/main/java/org/apache/flink/runtime/webmonitor/handlers/ng/JarListHandler.java --- @@ -0,0 +1,156 @@ +/* + * Licensed

[GitHub] flink pull request #5455: [FLINK-7711][flip6] Port JarListHandler

2018-02-14 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5455#discussion_r168302491 --- Diff: flink-runtime-web/src/main/java/org/apache/flink/runtime/webmonitor/handlers/ng/JarListHandler.java --- @@ -0,0 +1,156 @@ +/* + * Licensed

[GitHub] flink pull request #5455: [FLINK-7711][flip6] Port JarListHandler

2018-02-14 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5455#discussion_r168301191 --- Diff: flink-runtime-web/src/main/java/org/apache/flink/runtime/webmonitor/handlers/ng/JarListHandler.java --- @@ -0,0 +1,156 @@ +/* + * Licensed

[GitHub] flink pull request #5466: [FLINK-8530] [flip6] Enable detached job mode subm...

2018-02-14 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5466#discussion_r168200092 --- Diff: flink-clients/src/test/java/org/apache/flink/client/program/rest/RestClusterClientTest.java --- @@ -509,7 +536,7 @@ public void testListJobs() throws

[GitHub] flink pull request #5466: [FLINK-8530] [flip6] Enable detached job mode subm...

2018-02-14 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5466#discussion_r168199770 --- Diff: flink-clients/src/test/java/org/apache/flink/client/program/rest/RestClusterClientTest.java --- @@ -493,7 +520,7 @@ public void testTriggerSavepoint

[GitHub] flink pull request #5466: [FLINK-8530] [flip6] Enable detached job mode subm...

2018-02-14 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5466#discussion_r168199581 --- Diff: flink-clients/src/test/java/org/apache/flink/client/program/rest/RestClusterClientTest.java --- @@ -456,7 +483,7 @@ public void testTriggerSavepoint

[GitHub] flink pull request #5436: [FLINK-8613] [flip6] [yarn] Return excess containe...

2018-02-14 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5436#discussion_r168185682 --- Diff: flink-yarn/src/main/java/org/apache/flink/yarn/YarnResourceManager.java --- @@ -325,26 +325,43 @@ public void onContainersCompleted(List list

[GitHub] flink pull request #5436: [FLINK-8613] [flip6] [yarn] Return excess containe...

2018-02-14 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5436#discussion_r168184923 --- Diff: flink-yarn/src/main/java/org/apache/flink/yarn/YarnResourceManager.java --- @@ -325,26 +325,43 @@ public void onContainersCompleted(List list

[GitHub] flink pull request #5432: [FLINK-8609] [flip6] Enable Flip-6 job mode in Cli...

2018-02-14 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5432#discussion_r168173010 --- Diff: flink-clients/src/main/java/org/apache/flink/client/cli/CliFrontend.java --- @@ -210,51 +225,72 @@ protected void run(String[] args) throws Exception

[GitHub] flink pull request #5430: [FLINK-8605] [rest] Enable job cancellation from t...

2018-02-14 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5430#discussion_r168166945 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/rest/messages/YarnCancelJobTerminationHeaders.java --- @@ -0,0 +1,55 @@ +/* + * Licensed

[GitHub] flink pull request #5430: [FLINK-8605] [rest] Enable job cancellation from t...

2018-02-14 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5430#discussion_r168148700 --- Diff: flink-runtime/src/test/java/org/apache/flink/runtime/webmonitor/TestingRestfulGateway.java --- @@ -169,22 +192,26 @@ public static Builder newBuilder

[GitHub] flink pull request #5430: [FLINK-8605] [rest] Enable job cancellation from t...

2018-02-14 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5430#discussion_r168149188 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/rest/messages/JobTerminationHeaders.java --- @@ -32,7 +32,7 @@ private static

[GitHub] flink pull request #5430: [FLINK-8605] [rest] Enable job cancellation from t...

2018-02-14 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5430#discussion_r168165205 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/webmonitor/WebMonitorEndpoint.java --- @@ -593,6 +617,8 @@ public void shutdown(Time timeout

[GitHub] flink pull request #5431: [FLINK-8608] [flip6] Implement MiniDispatcher for ...

2018-02-14 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5431#discussion_r168132269 --- Diff: flink-runtime/src/test/java/org/apache/flink/runtime/dispatcher/MiniDispatcherTest.java --- @@ -0,0 +1,208 @@ +/* + * Licensed to the Apache

[GitHub] flink pull request #5431: [FLINK-8608] [flip6] Implement MiniDispatcher for ...

2018-02-14 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5431#discussion_r168126480 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/entrypoint/ClusterEntrypoint.java --- @@ -163,29 +210,130 @@ protected void runCluster

[GitHub] flink pull request #5442: [FLINK-7713][flip6] Implement JarUploadHandler

2018-02-13 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5442#discussion_r167930454 --- Diff: flink-runtime-web/src/main/java/org/apache/flink/runtime/webmonitor/handlers/ng/JarUploadResponseBody.java --- @@ -0,0 +1,58

[GitHub] flink pull request #5442: [FLINK-7713][flip6] Implement JarUploadHandler

2018-02-13 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5442#discussion_r167930421 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/webmonitor/WebMonitorUtils.java --- @@ -207,6 +215,53 @@ public static WebMonitor

[GitHub] flink pull request #5442: [FLINK-7713][flip6] Implement JarUploadHandler

2018-02-13 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5442#discussion_r167930349 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/dispatcher/DispatcherRestEndpoint.java --- @@ -100,6 +107,16 @@ public DispatcherRestEndpoint

[GitHub] flink pull request #5442: [FLINK-7713][flip6] Implement JarUploadHandler

2018-02-13 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5442#discussion_r167930317 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/webmonitor/WebMonitorUtils.java --- @@ -207,6 +215,53 @@ public static WebMonitor

[GitHub] flink pull request #5442: [FLINK-7713][flip6] Implement JarUploadHandler

2018-02-13 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5442#discussion_r167930401 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/webmonitor/WebMonitorUtils.java --- @@ -207,6 +215,53 @@ public static WebMonitor

[GitHub] flink pull request #5442: [FLINK-7713][flip6] Implement JarUploadHandler

2018-02-13 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5442#discussion_r167930373 --- Diff: flink-runtime-web/src/main/java/org/apache/flink/runtime/webmonitor/handlers/ng/JarUploadHandler.java --- @@ -0,0 +1,103 @@ +/* + * Licensed

[GitHub] flink pull request #5442: [FLINK-7713][flip6] Implement JarUploadHandler

2018-02-13 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5442#discussion_r167930279 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/webmonitor/WebMonitorUtils.java --- @@ -207,6 +215,53 @@ public static WebMonitor

[GitHub] flink pull request #5442: [FLINK-7713][flip6] Implement JarUploadHandler

2018-02-13 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5442#discussion_r167930470 --- Diff: flink-runtime-web/src/main/java/org/apache/flink/runtime/webmonitor/handlers/ng/JarUploadHandler.java --- @@ -0,0 +1,103 @@ +/* + * Licensed

[GitHub] flink pull request #5442: [FLINK-7713][flip6] Implement JarUploadHandler

2018-02-13 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5442#discussion_r167930174 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/webmonitor/WebMonitorUtils.java --- @@ -207,6 +215,53 @@ public static WebMonitor

[GitHub] flink pull request #5442: [FLINK-7713][flip6] Implement JarUploadHandler

2018-02-13 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5442#discussion_r167930099 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/webmonitor/WebMonitorUtils.java --- @@ -207,6 +215,53 @@ public static WebMonitor

[GitHub] flink pull request #5442: [FLINK-7713][flip6] Implement JarUploadHandler

2018-02-13 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5442#discussion_r167930021 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/rest/FileUploadHandler.java --- @@ -0,0 +1,147 @@ +/* + * Licensed to the Apache

[GitHub] flink pull request #5442: [FLINK-7713][flip6] Implement JarUploadHandler

2018-02-13 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5442#discussion_r167929864 --- Diff: flink-runtime-web/src/main/java/org/apache/flink/runtime/webmonitor/handlers/ng/JarUploadHandler.java --- @@ -0,0 +1,103 @@ +/* + * Licensed

[GitHub] flink pull request #5442: [FLINK-7713][flip6] Implement JarUploadHandler

2018-02-13 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5442#discussion_r167929949 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/rest/FileUploadHandler.java --- @@ -0,0 +1,147 @@ +/* + * Licensed to the Apache

[GitHub] flink pull request #5442: [FLINK-7713][flip6] Implement JarUploadHandler

2018-02-13 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5442#discussion_r167929912 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/rest/FileUploadHandler.java --- @@ -0,0 +1,147 @@ +/* + * Licensed to the Apache

[GitHub] flink pull request #5431: [FLINK-8608] [flip6] Implement MiniDispatcher for ...

2018-02-12 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5431#discussion_r167610671 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/entrypoint/ClusterEntrypoint.java --- @@ -262,32 +430,151 @@ protected void shutDown(boolean

[GitHub] flink pull request #5431: [FLINK-8608] [flip6] Implement MiniDispatcher for ...

2018-02-12 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5431#discussion_r167608001 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/entrypoint/ClusterEntrypoint.java --- @@ -300,4 +587,12 @@ protected static ClusterConfiguration

[GitHub] flink pull request #5431: [FLINK-8608] [flip6] Implement MiniDispatcher for ...

2018-02-12 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5431#discussion_r167601541 --- Diff: flink-runtime/src/test/java/org/apache/flink/runtime/dispatcher/MiniDispatcherTest.java --- @@ -0,0 +1,208 @@ +/* + * Licensed to the Apache

[GitHub] flink pull request #5431: [FLINK-8608] [flip6] Implement MiniDispatcher for ...

2018-02-12 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5431#discussion_r167606814 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/entrypoint/ClusterEntrypoint.java --- @@ -63,6 +89,10 @@ */ public abstract class

[GitHub] flink pull request #5431: [FLINK-8608] [flip6] Implement MiniDispatcher for ...

2018-02-12 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5431#discussion_r167593183 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/dispatcher/Dispatcher.java --- @@ -671,13 +674,68 @@ public void jobFinishedByOther

[GitHub] flink pull request #5455: [FLINK-7711][flip6] Port JarListHandler

2018-02-11 Thread GJL
Github user GJL commented on a diff in the pull request: https://github.com/apache/flink/pull/5455#discussion_r167474541 --- Diff: flink-runtime-web/src/main/java/org/apache/flink/runtime/webmonitor/handlers/ng/JarListHandler.java --- @@ -0,0 +1,156 @@ +/* + * Licensed

<    1   2   3   4   5   6   7   >