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

    https://github.com/apache/spark/pull/86#discussion_r10405655
  
    --- Diff: core/src/main/scala/org/apache/spark/deploy/SparkSubmit.scala ---
    @@ -0,0 +1,160 @@
    +/*
    + * Licensed to the Apache Software Foundation (ASF) under one or more
    + * contributor license agreements.  See the NOTICE file distributed with
    + * this work for additional information regarding copyright ownership.
    + * The ASF licenses this file to You under the Apache License, Version 2.0
    + * (the "License"); you may not use this file except in compliance with
    + * the License.  You may obtain a copy of the License at
    + *
    + *    http://www.apache.org/licenses/LICENSE-2.0
    + *
    + * Unless required by applicable law or agreed to in writing, software
    + * distributed under the License is distributed on an "AS IS" BASIS,
    + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    + * See the License for the specific language governing permissions and
    + * limitations under the License.
    + */
    +
    +package org.apache.spark.deploy
    +
    +import java.io.File
    +import java.net.URL
    +import java.net.URLClassLoader
    +
    +import scala.collection.mutable.ArrayBuffer
    +
    +object SparkSubmit {
    +  val YARN = 1
    +  val STANDALONE = 2
    +  val MESOS = 4
    +  val LOCAL = 8
    +  val ALL_CLUSTER_MGRS = YARN | STANDALONE | MESOS | LOCAL
    +
    +  var clusterManager: Int = LOCAL
    +
    +  def main(args: Array[String]) {
    +    val appArgs = new SparkSubmitArguments(args)
    +
    +    if (appArgs.master != null) {
    +      if (appArgs.master.startsWith("yarn")) {
    +        clusterManager = YARN
    +      } else if (appArgs.master.startsWith("spark")) {
    +        clusterManager = STANDALONE
    +      } else if (appArgs.master.startsWith("mesos")) {
    +        clusterManager = MESOS
    +      } else if (appArgs.master.startsWith("local")) {
    +        clusterManager = LOCAL
    +      } else {
    +        System.err.println("master must start with yarn, mesos, spark, or 
local")
    +        System.exit(1)
    +      }
    +    }
    +
    +    val deployOnCluster = appArgs.deployMode == "cluster"
    +    val childClasspath = new ArrayBuffer[String]()
    +    val childArgs = new ArrayBuffer[String]()
    +    var childMainClass = ""
    +
    +    if (clusterManager == MESOS && deployOnCluster) {
    +      System.err.println("Mesos does not support running the driver on the 
cluster")
    +      System.exit(1)
    +    }
    +
    +    if (deployOnCluster && clusterManager == STANDALONE) {
    +      childMainClass = "org.apache.spark.deploy.Client"
    +      childArgs += "launch"
    +      childArgs += (appArgs.master, appArgs.primaryResource, 
appArgs.mainClass)
    +    } else if (deployOnCluster && clusterManager == YARN) {
    +      childMainClass = "org.apache.spark.deploy.yarn.Client"
    +      childArgs += ("--jar", appArgs.primaryResource)
    +      childArgs += ("--class", appArgs.mainClass)
    +    } else {
    +      childMainClass = appArgs.mainClass
    +      childClasspath += appArgs.primaryResource
    +    }
    +
    +    val options = List[OptionAssigner](
    +      new OptionAssigner(appArgs.driverMemory, YARN, true, clOption = 
"--master-memory"),
    +      new OptionAssigner(appArgs.name, YARN, true, clOption = "--name"),
    +      new OptionAssigner(appArgs.queue, YARN, true, clOption = "--queue"),
    +      new OptionAssigner(appArgs.queue, YARN, false, sysProp = 
"spark.yarn.queue"),
    +      new OptionAssigner(appArgs.numExecutors, YARN, true, clOption = 
"--num-workers"),
    +      new OptionAssigner(appArgs.numExecutors, YARN, false, sysProp = 
"spark.worker.instances"),
    +      new OptionAssigner(appArgs.executorMemory, YARN, false, clOption = 
"--worker-memory"),
    +      new OptionAssigner(appArgs.executorMemory, STANDALONE, true, 
clOption = "--memory"),
    +      new OptionAssigner(appArgs.executorMemory, STANDALONE | MESOS | 
YARN, false, sysProp = "spark.executor.memory"),
    +      new OptionAssigner(appArgs.executorCores, YARN, true, clOption = 
"--worker-cores"),
    +      new OptionAssigner(appArgs.executorCores, STANDALONE, true, clOption 
= "--cores"),
    +      new OptionAssigner(appArgs.executorCores, STANDALONE | MESOS | YARN, 
false, sysProp = "spark.cores.max"),
    +      new OptionAssigner(appArgs.files, YARN, false, sysProp = 
"spark.yarn.dist.files"),
    +      new OptionAssigner(appArgs.files, YARN, true, clOption = "--files"),
    +      new OptionAssigner(appArgs.archives, YARN, false, sysProp = 
"spark.yarn.dist.archives"),
    +      new OptionAssigner(appArgs.archives, YARN, true, clOption = 
"--archives"),
    +      new OptionAssigner(appArgs.moreJars, YARN, true, clOption = 
"--addJars")
    +    )
    +
    +    // more jars
    +    if (appArgs.moreJars != null && !deployOnCluster) {
    +      childClasspath += appArgs.moreJars
    +    }
    +
    +    // args
    +    if (!deployOnCluster || clusterManager == STANDALONE) {
    +      childArgs ++= appArgs.childArgs
    +    } else if (clusterManager == YARN) {
    +      for (arg <- appArgs.childArgs) {
    +        childArgs += ("--args", arg)
    +      }
    +    }
    +
    +    for (opt <- options) {
    +      if (opt.value != null && deployOnCluster == opt.deployOnCluster &&
    +        (clusterManager & opt.clusterManager) != 0) {
    +        if (opt.clOption != null) {
    +          childArgs += (opt.clOption, opt.value)
    +        } else if (opt.sysProp != null) {
    +          System.setProperty(opt.sysProp, opt.value)
    +        }
    +      }
    +    }
    +
    +    launch(childArgs, childClasspath, childMainClass)
    +  }
    +
    +  def launch(childArgs: ArrayBuffer[String], childClasspath: 
ArrayBuffer[String],
    +      childMainClass: String) {
    +    val loader = Thread.currentThread.getContextClassLoader
    +
    +    for (jars <- childClasspath) {
    --- End diff --
    
    I don't think this is something we need to support. Is there a use case you 
are thinking of? If users are doing something wacky they can always set-up the 
classpath manually and not use `spark-app`. 


---
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