[
https://issues.apache.org/jira/browse/FLINK-2797?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14976070#comment-14976070
]
ASF GitHub Bot commented on FLINK-2797:
---------------------------------------
Github user mxm commented on a diff in the pull request:
https://github.com/apache/flink/pull/1214#discussion_r43098098
--- Diff:
flink-streaming-java/src/main/java/org/apache/flink/streaming/api/environment/StreamContextEnvironment.java
---
@@ -75,29 +62,31 @@ public JobExecutionResult execute() throws Exception {
@Override
public JobExecutionResult execute(String jobName) throws Exception {
- JobGraph jobGraph;
- if (jobName == null) {
- jobGraph = this.getStreamGraph().getJobGraph();
- } else {
- jobGraph = this.getStreamGraph().getJobGraph(jobName);
- }
-
- transformations.clear();
-
- // attach all necessary jar files to the JobGraph
- for (URL file : jars) {
- jobGraph.addJar(new Path(file.toURI()));
- }
-
- jobGraph.setClasspaths(classpaths);
--- End diff --
No classpaths for detached jobs?
> CLI: Missing option to submit jobs in detached mode
> ---------------------------------------------------
>
> Key: FLINK-2797
> URL: https://issues.apache.org/jira/browse/FLINK-2797
> Project: Flink
> Issue Type: Bug
> Components: Command-line client
> Affects Versions: 0.9, 0.10
> Reporter: Maximilian Michels
> Assignee: Sachin Goel
> Fix For: 0.10
>
>
> Jobs can only be submitted in detached mode using YARN but not on a
> standalone installation. This has been requested by users who want to submit
> a job, get the job id, and later query its status.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)