<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>question Re: What dependencies to submit Spark jobs programmatically (not via spark-submit)? in Archives of Support Questions (Read Only)</title>
    <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-dependencies-to-submit-Spark-jobs-programmatically-not/m-p/24722#M4953</link>
    <description>&lt;P&gt;In general, you do not run Spark applications directly as Java programs. You have to run them with spark-submit, which sets up the classpath for you. Otherwise you have to set it up, and that's the problem here; you didn't put all of the many YARN / Hadoop / Spark jars on your classpath.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;spark-yarn and yarn-parent were discontinued in 1.2.0, but then brought back very recently for 1.2.1. You can see it doesn't exist upstream for 1.2.0:&amp;nbsp;&lt;A target="_blank" href="http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22org.apache.spark%22%20AND%20a%3A%22yarn-parent_2.10%22"&gt;http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22org.apache.spark%22%20AND%20a%3A%22yarn-parent_2.10%22&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;CDH 5.3 was based on 1.2.0, so that's why.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That said, that is not the artifact you are missing here. You don't even have YARN code on your classpath.&lt;/P&gt;</description>
    <pubDate>Mon, 16 Feb 2015 15:25:50 GMT</pubDate>
    <dc:creator>srowen</dc:creator>
    <dc:date>2015-02-16T15:25:50Z</dc:date>
    <item>
      <title>What dependencies to submit Spark jobs programmatically (not via spark-submit)?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-dependencies-to-submit-Spark-jobs-programmatically-not/m-p/24721#M4952</link>
      <description>&lt;PRE&gt;&amp;nbsp;SparkConf conf = new SparkConf();&lt;BR /&gt; conf.setAppName("Test");&lt;BR /&gt; conf.setMaster("yarn-cluster"); // or with "yarn-client"&lt;BR /&gt; JavaSparkContext context = new JavaSparkContext(conf);&lt;/PRE&gt;&lt;P&gt;I am trying to run the above code against CDH 5.2 and CDH 5.3. I receive the errors below (note I am trying both "yarn-client" and "yarn-cluster"). I noticed in the Cloudera maven repo there doesn't seem to be a stable (non SNAPSHOT) spark-yarn [1] or yarn-parent [2] for CDH 5.2 and 5.3. Is this supported? Any tips?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;[1]&amp;nbsp;&lt;A target="_blank" href="https://repository.cloudera.com/artifactory/cloudera-repos/org/apache/spark/spark-yarn_2.10/"&gt;https://repository.cloudera.com/artifactory/cloudera-repos/org/apache/spark/spark-yarn_2.10/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;[2]&amp;nbsp;&lt;A target="_blank" href="https://repository.cloudera.com/artifactory/cloudera-repos/org/apache/spark/yarn-parent_2.10/"&gt;https://repository.cloudera.com/artifactory/cloudera-repos/org/apache/spark/yarn-parent_2.10/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;// with yarn-client&lt;/P&gt;&lt;PRE&gt;java.lang.NoClassDefFoundError: org/apache/hadoop/yarn/conf/YarnConfiguration
	at java.lang.Class.forName0(Native Method)
	at java.lang.Class.forName(Class.java:171)
	at org.apache.spark.deploy.SparkHadoopUtil$.liftedTree1$1(SparkHadoopUtil.scala:102)
	at org.apache.spark.deploy.SparkHadoopUtil$.&amp;lt;init&amp;gt;(SparkHadoopUtil.scala:101)
	at org.apache.spark.deploy.SparkHadoopUtil$.&amp;lt;clinit&amp;gt;(SparkHadoopUtil.scala)
	at org.apache.spark.SparkContext.&amp;lt;init&amp;gt;(SparkContext.scala:228)
	at org.apache.spark.api.java.JavaSparkContext.&amp;lt;init&amp;gt;(JavaSparkContext.scala:53)
	at com.bretthoerner.TestSpark.testSpark(TestSpark.java:111)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
	at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:47)
	at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
	at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:44)
	at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
	at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26)
	at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27)
	at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:271)
	at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:70)
	at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:50)
	at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238)
	at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63)
	at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236)
	at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53)
	at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229)
	at org.junit.runners.ParentRunner.run(ParentRunner.java:309)
	at org.junit.runners.Suite.runChild(Suite.java:127)
	at org.junit.runners.Suite.runChild(Suite.java:26)
	at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238)
	at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63)
	at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236)
	at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53)
	at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229)
	at org.junit.runners.ParentRunner.run(ParentRunner.java:309)
	at org.junit.runner.JUnitCore.run(JUnitCore.java:160)
	at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:74)
	at com.intellij.rt.execution.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:211)
	at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java:67)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
	at com.intellij.rt.execution.application.AppMain.main(AppMain.java:134)
Caused by: java.lang.ClassNotFoundException: org.apache.hadoop.yarn.conf.YarnConfiguration
	at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
	at java.security.AccessController.doPrivileged(Native Method)
	at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
	at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
	at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
	at java.lang.ClassLoader.loadClass(ClassLoader.java:247)
	... 44 more&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;// with yarn-cluster&lt;/P&gt;&lt;PRE&gt;org.apache.spark.SparkException: YARN mode not available ?
	at org.apache.spark.SparkContext$.org$apache$spark$SparkContext$$createTaskScheduler(SparkContext.scala:1561)
	at org.apache.spark.SparkContext.&amp;lt;init&amp;gt;(SparkContext.scala:310)
	at org.apache.spark.api.java.JavaSparkContext.&amp;lt;init&amp;gt;(JavaSparkContext.scala:53)
	at com.bretthoerner.TestSpark.testSpark(TestSpark.java:116)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
	at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:47)
	at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
	at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:44)
	at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
	at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26)
	at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27)
	at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:271)
	at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:70)
	at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:50)
	at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238)
	at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63)
	at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236)
	at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53)
	at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229)
	at org.junit.runners.ParentRunner.run(ParentRunner.java:309)
	at org.junit.runners.Suite.runChild(Suite.java:127)
	at org.junit.runners.Suite.runChild(Suite.java:26)
	at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238)
	at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63)
	at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236)
	at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53)
	at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229)
	at org.junit.runners.ParentRunner.run(ParentRunner.java:309)
	at org.junit.runner.JUnitCore.run(JUnitCore.java:160)
	at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:74)
	at com.intellij.rt.execution.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:211)
	at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java:67)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
	at com.intellij.rt.execution.application.AppMain.main(AppMain.java:134)
Caused by: java.lang.ClassNotFoundException: org.apache.spark.scheduler.cluster.YarnClusterScheduler
	at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
	at java.security.AccessController.doPrivileged(Native Method)
	at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
	at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
	at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
	at java.lang.ClassLoader.loadClass(ClassLoader.java:247)
	at java.lang.Class.forName0(Native Method)
	at java.lang.Class.forName(Class.java:171)
	at org.apache.spark.SparkContext$.org$apache$spark$SparkContext$$createTaskScheduler(SparkContext.scala:1554)
	... 39 more&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Sep 2022 09:21:41 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-dependencies-to-submit-Spark-jobs-programmatically-not/m-p/24721#M4952</guid>
      <dc:creator>bretthoerner</dc:creator>
      <dc:date>2022-09-16T09:21:41Z</dc:date>
    </item>
    <item>
      <title>Re: What dependencies to submit Spark jobs programmatically (not via spark-submit)?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-dependencies-to-submit-Spark-jobs-programmatically-not/m-p/24722#M4953</link>
      <description>&lt;P&gt;In general, you do not run Spark applications directly as Java programs. You have to run them with spark-submit, which sets up the classpath for you. Otherwise you have to set it up, and that's the problem here; you didn't put all of the many YARN / Hadoop / Spark jars on your classpath.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;spark-yarn and yarn-parent were discontinued in 1.2.0, but then brought back very recently for 1.2.1. You can see it doesn't exist upstream for 1.2.0:&amp;nbsp;&lt;A target="_blank" href="http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22org.apache.spark%22%20AND%20a%3A%22yarn-parent_2.10%22"&gt;http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22org.apache.spark%22%20AND%20a%3A%22yarn-parent_2.10%22&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;CDH 5.3 was based on 1.2.0, so that's why.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That said, that is not the artifact you are missing here. You don't even have YARN code on your classpath.&lt;/P&gt;</description>
      <pubDate>Mon, 16 Feb 2015 15:25:50 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-dependencies-to-submit-Spark-jobs-programmatically-not/m-p/24722#M4953</guid>
      <dc:creator>srowen</dc:creator>
      <dc:date>2015-02-16T15:25:50Z</dc:date>
    </item>
    <item>
      <title>Re: What dependencies to submit Spark jobs programmatically (not via spark-submit)?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-dependencies-to-submit-Spark-jobs-programmatically-not/m-p/24723#M4954</link>
      <description>&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I guess my followup is... am I insane for wanting&amp;nbsp;to do it that way? Do other people with existing JVM based apps that need to submit jobs actually use a&amp;nbsp;ProcessBuilder to run spark-submit?&lt;/P&gt;</description>
      <pubDate>Mon, 16 Feb 2015 15:32:05 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-dependencies-to-submit-Spark-jobs-programmatically-not/m-p/24723#M4954</guid>
      <dc:creator>bretthoerner</dc:creator>
      <dc:date>2015-02-16T15:32:05Z</dc:date>
    </item>
    <item>
      <title>Re: What dependencies to submit Spark jobs programmatically (not via spark-submit)?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-dependencies-to-submit-Spark-jobs-programmatically-not/m-p/24725#M4955</link>
      <description>&lt;P&gt;Nah it's not crazy, just means you have to do some of the work that spark-submit does. Almost all of that is dealing with the classpath.&amp;nbsp;If you're just trying to get a simple app running I think spark-submit is the way to go. But if you're building a more complex product or service you might have to embed Spark and deal with this.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Example, I had to do just this recently, and here's what I came up with:&amp;nbsp;&lt;A target="_blank" href="https://github.com/OryxProject/oryx/tree/master/bin"&gt;https://github.com/OryxProject/oryx/tree/master/bin&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In future versions (like 1.4+) there's going to be a more proper programmatic submission API. I know Marcelo here has been working on that.&lt;/P&gt;</description>
      <pubDate>Mon, 16 Feb 2015 15:44:43 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-dependencies-to-submit-Spark-jobs-programmatically-not/m-p/24725#M4955</guid>
      <dc:creator>srowen</dc:creator>
      <dc:date>2015-02-16T15:44:43Z</dc:date>
    </item>
    <item>
      <title>Re: What dependencies to submit Spark jobs programmatically (not via spark-submit)?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-dependencies-to-submit-Spark-jobs-programmatically-not/m-p/26309#M4956</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to do the same thing but the code link you has moved. Can you point me to the location within the oryx code base that I should look&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Apr 2015 08:41:25 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-dependencies-to-submit-Spark-jobs-programmatically-not/m-p/26309#M4956</guid>
      <dc:creator>IainMacnab</dc:creator>
      <dc:date>2015-04-08T08:41:25Z</dc:date>
    </item>
    <item>
      <title>Re: What dependencies to submit Spark jobs programmatically (not via spark-submit)?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-dependencies-to-submit-Spark-jobs-programmatically-not/m-p/26310#M4957</link>
      <description>&lt;P&gt;See &lt;A target="_blank" href="https://github.com/OryxProject/oryx/tree/master/deploy/bin"&gt;https://github.com/OryxProject/oryx/tree/master/deploy/bin&lt;/A&gt; now, and also &lt;A target="_blank" href="https://github.com/OryxProject/oryx/blob/master/framework/oryx-lambda/src/main/java/com/cloudera/oryx/lambda/AbstractSparkLayer.java"&gt;https://github.com/OryxProject/oryx/blob/master/framework/oryx-lambda/src/main/java/com/cloudera/oryx/lambda/AbstractSparkLayer.java&lt;/A&gt; and its subclasses.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Apr 2015 08:58:12 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-dependencies-to-submit-Spark-jobs-programmatically-not/m-p/26310#M4957</guid>
      <dc:creator>srowen</dc:creator>
      <dc:date>2015-04-08T08:58:12Z</dc:date>
    </item>
    <item>
      <title>Re: What dependencies to submit Spark jobs programmatically (not via spark-submit)?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-dependencies-to-submit-Spark-jobs-programmatically-not/m-p/26363#M4958</link>
      <description>&lt;P&gt;@sowen how do you manage&amp;nbsp;Oryx dependency conflicts with that of Spark? What Spark jars should one include for launching a Spark job programatically within java code? I have been running into a few conflicts, latest one being&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p1"&gt;java.lang.NoClassDefFoundError: com/google/common/util/concurrent/ThreadFactoryBuilder&lt;/P&gt;</description>
      <pubDate>Thu, 09 Apr 2015 00:40:12 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-dependencies-to-submit-Spark-jobs-programmatically-not/m-p/26363#M4958</guid>
      <dc:creator>prashantkommireddi</dc:creator>
      <dc:date>2015-04-09T00:40:12Z</dc:date>
    </item>
    <item>
      <title>Re: What dependencies to submit Spark jobs programmatically (not via spark-submit)?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-dependencies-to-submit-Spark-jobs-programmatically-not/m-p/26373#M4959</link>
      <description>&lt;P&gt;The Spark, Hadoop and Kafka dependencies are 'provided' by the cluster at runtime and not included in the app. Other dependencies you must bundle with your app. In the case that they conflict with dependencies that leak from Spark you can usually use the user-classpath-first properties to work around them.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Apr 2015 10:41:13 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-dependencies-to-submit-Spark-jobs-programmatically-not/m-p/26373#M4959</guid>
      <dc:creator>srowen</dc:creator>
      <dc:date>2015-04-09T10:41:13Z</dc:date>
    </item>
    <item>
      <title>Re: What dependencies to submit Spark jobs programmatically (not via spark-submit)?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-dependencies-to-submit-Spark-jobs-programmatically-not/m-p/29478#M4960</link>
      <description>&lt;P&gt;Out of curiosity, is there a JIRA task for any work relating to the programmatic API to submit spark jobs?&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jul 2015 18:53:11 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-dependencies-to-submit-Spark-jobs-programmatically-not/m-p/29478#M4960</guid>
      <dc:creator>terrymsiu</dc:creator>
      <dc:date>2015-07-10T18:53:11Z</dc:date>
    </item>
    <item>
      <title>Re: What dependencies to submit Spark jobs programmatically (not via spark-submit)?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-dependencies-to-submit-Spark-jobs-programmatically-not/m-p/29479#M4961</link>
      <description>&lt;P&gt;It's already complete and in 1.4. This was the initial JIRA &amp;nbsp;&lt;A href="https://issues.apache.org/jira/browse/SPARK-4924" target="_blank"&gt;https://issues.apache.org/jira/browse/SPARK-4924&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jul 2015 18:57:52 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-dependencies-to-submit-Spark-jobs-programmatically-not/m-p/29479#M4961</guid>
      <dc:creator>srowen</dc:creator>
      <dc:date>2015-07-10T18:57:52Z</dc:date>
    </item>
    <item>
      <title>Re: What dependencies to submit Spark jobs programmatically (not via spark-submit)?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-dependencies-to-submit-Spark-jobs-programmatically-not/m-p/29483#M4962</link>
      <description>&lt;P&gt;Sweet! Thanks! Gonna try this out when we get a chance!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jul 2015 20:53:14 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-dependencies-to-submit-Spark-jobs-programmatically-not/m-p/29483#M4962</guid>
      <dc:creator>terrymsiu</dc:creator>
      <dc:date>2015-07-10T20:53:14Z</dc:date>
    </item>
    <item>
      <title>Re: What dependencies to submit Spark jobs programmatically (not via spark-submit)?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-dependencies-to-submit-Spark-jobs-programmatically-not/m-p/47422#M4963</link>
      <description>Hi, the link is unavailabe now. Could you provide a new link?</description>
      <pubDate>Wed, 16 Nov 2016 07:19:01 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-dependencies-to-submit-Spark-jobs-programmatically-not/m-p/47422#M4963</guid>
      <dc:creator>zhuangmz</dc:creator>
      <dc:date>2016-11-16T07:19:01Z</dc:date>
    </item>
    <item>
      <title>Re: What dependencies to submit Spark jobs programmatically (not via spark-submit)?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-dependencies-to-submit-Spark-jobs-programmatically-not/m-p/47435#M4964</link>
      <description>&lt;P&gt;(Which link are you referring to?)&lt;/P&gt;</description>
      <pubDate>Wed, 16 Nov 2016 09:56:16 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-dependencies-to-submit-Spark-jobs-programmatically-not/m-p/47435#M4964</guid>
      <dc:creator>srowen</dc:creator>
      <dc:date>2016-11-16T09:56:16Z</dc:date>
    </item>
    <item>
      <title>Re: What dependencies to submit Spark jobs programmatically (not via spark-submit)?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-dependencies-to-submit-Spark-jobs-programmatically-not/m-p/47438#M4965</link>
      <description>this link&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://github.com/OryxProject/oryx/tree/master/bin" target="_blank"&gt;https://github.com/OryxProject/oryx/tree/master/bin&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks</description>
      <pubDate>Wed, 16 Nov 2016 10:33:48 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-dependencies-to-submit-Spark-jobs-programmatically-not/m-p/47438#M4965</guid>
      <dc:creator>zhuangmz</dc:creator>
      <dc:date>2016-11-16T10:33:48Z</dc:date>
    </item>
    <item>
      <title>Re: What dependencies to submit Spark jobs programmatically (not via spark-submit)?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-dependencies-to-submit-Spark-jobs-programmatically-not/m-p/47439#M4966</link>
      <description>&lt;P&gt;&lt;A href="https://github.com/OryxProject/oryx/tree/master/deploy/bin" target="_blank"&gt;https://github.com/OryxProject/oryx/tree/master/deploy/bin&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You should in general look at&amp;nbsp;&lt;A href="https://github.com/OryxProject/oryx" target="_blank"&gt;https://github.com/OryxProject/oryx&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Nov 2016 10:36:12 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-dependencies-to-submit-Spark-jobs-programmatically-not/m-p/47439#M4966</guid>
      <dc:creator>srowen</dc:creator>
      <dc:date>2016-11-16T10:36:12Z</dc:date>
    </item>
    <item>
      <title>Re: What dependencies to submit Spark jobs programmatically (not via spark-submit)?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-dependencies-to-submit-Spark-jobs-programmatically-not/m-p/48893#M4967</link>
      <description>&lt;P&gt;i'm running my spark job using sbt,i.e., "sbt run".&lt;/P&gt;&lt;P&gt;You think this can be a problem?&lt;/P&gt;&lt;P&gt;Or should we stick to the spark-submit all the time?&lt;/P&gt;</description>
      <pubDate>Thu, 29 Dec 2016 09:10:38 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-dependencies-to-submit-Spark-jobs-programmatically-not/m-p/48893#M4967</guid>
      <dc:creator>jack0188</dc:creator>
      <dc:date>2016-12-29T09:10:38Z</dc:date>
    </item>
    <item>
      <title>Re: What dependencies to submit Spark jobs programmatically (not via spark-submit)?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-dependencies-to-submit-Spark-jobs-programmatically-not/m-p/48894#M4968</link>
      <description>&lt;P&gt;i'm running my spark job using sbt,i.e., "sbt run".&lt;/P&gt;&lt;P&gt;You think this can be a problem?&lt;/P&gt;&lt;P&gt;Or should we stick to the spark-submit all the time?&lt;/P&gt;</description>
      <pubDate>Thu, 29 Dec 2016 09:14:15 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-dependencies-to-submit-Spark-jobs-programmatically-not/m-p/48894#M4968</guid>
      <dc:creator>jack0188</dc:creator>
      <dc:date>2016-12-29T09:14:15Z</dc:date>
    </item>
    <item>
      <title>Re: What dependencies to submit Spark jobs programmatically (not via spark-submit)?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-dependencies-to-submit-Spark-jobs-programmatically-not/m-p/48895#M4969</link>
      <description>i'm using sbt, should i use spark-submit everytime we need to run a project? SBT run, is catering my needs for now, as im using it in local mode.</description>
      <pubDate>Thu, 29 Dec 2016 10:26:24 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/What-dependencies-to-submit-Spark-jobs-programmatically-not/m-p/48895#M4969</guid>
      <dc:creator>jack0188</dc:creator>
      <dc:date>2016-12-29T10:26:24Z</dc:date>
    </item>
  </channel>
</rss>

