[ https://issues.apache.org/jira/browse/FLINK-4308?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15408570#comment-15408570 ]
ASF GitHub Bot commented on FLINK-4308: --------------------------------------- GitHub user zhenzhongxu opened a pull request: https://github.com/apache/flink/pull/2335 [FLINK-4308] Allow uploaded jar directory to be configurable Thanks for contributing to Apache Flink. Before you open your pull request, please take the following check list into consideration. If your changes take all of the items into account, feel free to open your pull request. For more information and/or questions please refer to the [How To Contribute guide](http://flink.apache.org/how-to-contribute.html). In addition to going through the list, please provide a meaningful description of your changes. - [ ] General - The pull request references the related JIRA issue ("[FLINK-XXX] Jira title text") - The pull request addresses only one issue - Each commit in the PR has a meaningful commit message (including the JIRA id) - [ ] Documentation - Documentation has been added for new functionality - Old documentation affected by the pull request has been updated - JavaDoc for public methods has been added - [ ] Tests & Build - Functionality added by the pull request is covered by tests - `mvn clean verify` has been executed successfully locally or a Travis build has passed You can merge this pull request into a Git repository by running: $ git pull https://github.com/zhenzhongxu/flink master Alternatively you can review and apply these changes as the patch at: https://github.com/apache/flink/pull/2335.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #2335 ---- commit f77ed1f9dbe57b139fff5d3f92ca751d292b30ba Author: Zhenzhong Xu <z...@netflix.com> Date: 2016-08-04T19:49:40Z FLINK-4308: add optional jobmanager.web.uploaddir to specifiy job jar location so jars can be prepackaged in docker image commit d20ad30290e7f0460a75260d1daf8111a8ba224d Author: Zhenzhong Xu <z...@netflix.com> Date: 2016-08-04T21:19:46Z FLINK-4308: incorporate review feedback to change property name to follow standards and av avoid confusion commit b69aedcfc451924b510871098bb59dbe5b533580 Author: Zhenzhong Xu <z...@netflix.com> Date: 2016-08-04T21:27:09Z Merge pull request #2 in KS/flink from FLINK-4308 to 1.1-SNAPSHOT-nflx.0 * commit 'd20ad30290e7f0460a75260d1daf8111a8ba224d': FLINK-4308: incorporate review feedback to change property name to follow standards and av avoid confusion FLINK-4308: add optional jobmanager.web.uploaddir to specifiy job jar location so jars can be prepackaged in docker image commit ad7e8f1556d071aaf4dc95a2c2f503637ede97cf Author: Zhenzhong Xu <z...@netflix.com> Date: 2016-08-04T21:41:40Z Merge branch 'master' of ssh://stash.corp.netflix.com:7999/ks/flink into 1.1-SNAPSHOT-nflx.0 ---- > Allow uploaded jar directory to be configurable > ------------------------------------------------ > > Key: FLINK-4308 > URL: https://issues.apache.org/jira/browse/FLINK-4308 > Project: Flink > Issue Type: Improvement > Components: Webfrontend > Reporter: Zhenzhong Xu > Priority: Minor > > I notice sometimes it's preferable to have uploaded jars to be put into a > configurable directory location instead only have it at runtime. In this case > we can pre-load the directory with jars in a docker image and allows us to > leverage the jobmanager restful interface to start/kill jobs. > WebRuntimeMonitor.java > String uploadDirName = "flink-web-upload-" + UUID.randomUUID(); > this.uploadDir = new File(getBaseDir(config), uploadDirName); > -- This message was sent by Atlassian JIRA (v6.3.4#6332)