[ 
https://issues.apache.org/jira/browse/BEAM-4615?focusedWorklogId=114537&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-114537
 ]

ASF GitHub Bot logged work on BEAM-4615:
----------------------------------------

                Author: ASF GitHub Bot
            Created on: 21/Jun/18 22:32
            Start Date: 21/Jun/18 22:32
    Worklog Time Spent: 10m 
      Work Description: lukecwik commented on a change in pull request #5726: 
[BEAM-4615] Flink job server wrapper and shadow jar
URL: https://github.com/apache/beam/pull/5726#discussion_r197296876
 
 

 ##########
 File path: runners/flink/build.gradle
 ##########
 @@ -134,5 +134,31 @@ task validatesRunner {
   dependsOn validatesRunnerStreaming
 }
 
+task runJobServer(type: JavaExec) {
+  classpath = sourceSets.main.runtimeClasspath
 
 Review comment:
   You don't need to duplicate every dependency.
   
   ```
   configurations {
     jobServer
   }
   
   dependencies {
     ...
     jobServer project(path: project.path, configuration: "shadow")
   }
   
   task runJobServer {
     classpath = configurations.jobServer
     ...
   }
   ```
   should work.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Issue Time Tracking
-------------------

    Worklog Id:     (was: 114537)
    Time Spent: 2h 10m  (was: 2h)

> Flink job server driver wrapper
> -------------------------------
>
>                 Key: BEAM-4615
>                 URL: https://issues.apache.org/jira/browse/BEAM-4615
>             Project: Beam
>          Issue Type: New Feature
>          Components: runner-flink
>            Reporter: Ben Sidhom
>            Assignee: Ben Sidhom
>            Priority: Major
>          Time Spent: 2h 10m
>  Remaining Estimate: 0h
>
> This includes:
>  * A gradle wrapper that can execute the Flink job server driver so that it 
> can be easily run locally for testing/debugging.
>  * A shadow ("uber") target that packages all portable Flink runner 
> dependencies into a runnable jar. This jar can then be submitted to Flink 
> clusters via `flink run`.
>  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

Reply via email to