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

    https://github.com/apache/spark/pull/15009#discussion_r114172209
  
    --- Diff: 
launcher/src/main/java/org/apache/spark/launcher/SparkLauncher.java ---
    @@ -107,6 +119,35 @@ public static void setConfig(String name, String 
value) {
         launcherConfig.put(name, value);
       }
     
    +
    +
    +  /**
    +   * Specifies that Spark Application be stopped if current process goes 
away.
    +   * It tries stop/kill Spark Application if launching process goes away.
    +   *
    +   * @since 2.2.0
    +   * @param autoShutdown Whether to shut down the Spark application if the 
launcher process goes away.
    +   * @return This launcher.
    +   */
    +  public SparkLauncher autoShutdown(boolean autoShutdown) {
    +    this.autoShutdown = autoShutdown;
    +    return this;
    +  }
    +
    +  /**
    +   * Specifies that Spark Submit be launched as a daemon thread. Please 
note
    +   * this feature is currently supported only for YARN cluster deployment 
mode.
    --- End diff --
    
    This is not true. It works in any mode.


---
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 [email protected] or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to