Github user tillrohrmann commented on a diff in the pull request:

    https://github.com/apache/flink/pull/3388#discussion_r103200589
  
    --- Diff: 
flink-yarn/src/main/java/org/apache/flink/yarn/cli/FlinkYarnCLI.java ---
    @@ -85,6 +89,10 @@ public FlinkYarnCLI(String shortPrefix, String 
longPrefix) {
                DETACHED = new Option(shortPrefix + "a", longPrefix + 
"attached", false, "Start attached");
                ZOOKEEPER_NAMESPACE = new Option(shortPrefix + "z", longPrefix 
+ "zookeeperNamespace", true, "Namespace to create the Zookeeper sub-paths for 
high availability mode");
     
    +           LIB_JARS = new Option(shortPrefix + "libjars", longPrefix + 
"libjars", true, "Jar file paths for job, like /home/user/lib/test.jar");
    +           FILES = new Option(shortPrefix + "files", longPrefix + "files", 
true, "Normal file paths for job, like /home/user/lib/test.dict");
    +           ARCHIVES = new Option(shortPrefix + "archives", longPrefix + 
"archives", true, "Archived file uris for job, like 
hdfs:///users/flink/common_dict#dict");
    --- End diff --
    
    I'm wondering whether we shouldn't offer these options also for the 
standalone and mesos case. We could use the BlobStore to distribute the files.


---
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 enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to