<?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: Oozie Spark Action on HDP 2.4  - NoSuchMethodError: org.apache.spark.util.Utils$.DEFAULT_DRIVER_MEM_MB() in Archives of Support Questions (Read Only)</title>
    <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Oozie-Spark-Action-on-HDP-2-4-NoSuchMethodError-org-apache/m-p/121949#M26522</link>
    <description>&lt;P&gt;Check your jobTracker setting in your job.properties, you had "jobTracker=hdp1.cidev:8050" in your question. And make sure you use "-conf job.properties" when you submit your job.&lt;/P&gt;</description>
    <pubDate>Wed, 04 May 2016 08:39:52 GMT</pubDate>
    <dc:creator>pminovic</dc:creator>
    <dc:date>2016-05-04T08:39:52Z</dc:date>
    <item>
      <title>Oozie Spark Action on HDP 2.4  - NoSuchMethodError: org.apache.spark.util.Utils$.DEFAULT_DRIVER_MEM_MB()</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Oozie-Spark-Action-on-HDP-2-4-NoSuchMethodError-org-apache/m-p/121944#M26517</link>
      <description>&lt;P&gt;
	Hello everyone,&lt;/P&gt;&lt;P&gt;
	Is there anyone tried to use Oozie Spark action on HDP 2.4. I believe it's now supported and I'm trying to schedule a job through Oozie using Spark action but facing several issues.&lt;/P&gt;&lt;P&gt;
	I have already followed Hortonworks KB article related to "How-To_ How to run Spark Action in oozie of HDP" and followed each steps. I'm also able to submit my jar through spark-submit using "yarn-cluster" mode but when I place it through Oozie I face the following error: &lt;/P&gt;
&lt;PRE&gt;Failing Oozie Launcher, Main class [org.apache.oozie.action.hadoop.SparkMain], main() threw exception, org.apache.spark.util.Utils$.DEFAULT_DRIVER_MEM_MB()I
java.lang.NoSuchMethodError: org.apache.spark.util.Utils$.DEFAULT_DRIVER_MEM_MB()I
	at org.apache.spark.deploy.yarn.ClientArguments.&amp;lt;init&amp;gt;(ClientArguments.scala:49)
	at org.apache.spark.deploy.yarn.Client$.main(Client.scala:1120)
	at org.apache.spark.deploy.yarn.Client.main(Client.scala)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:497)
	at org.apache.spark.deploy.SparkSubmit$.launch(SparkSubmit.scala:328)
	at org.apache.spark.deploy.SparkSubmit$.main(SparkSubmit.scala:75)
	at org.apache.spark.deploy.SparkSubmit.main(SparkSubmit.scala)
	at org.apache.oozie.action.hadoop.SparkMain.runSpark(SparkMain.java:104)
	at org.apache.oozie.action.hadoop.SparkMain.run(SparkMain.java:95)
	at org.apache.oozie.action.hadoop.LauncherMain.run(LauncherMain.java:47)
	at org.apache.oozie.action.hadoop.SparkMain.main(SparkMain.java:38)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:497)
	at org.apache.oozie.action.hadoop.LauncherMapper.map(LauncherMapper.java:241)
	at org.apache.hadoop.mapred.MapRunner.run(MapRunner.java:54)
	at org.apache.hadoop.mapred.MapTask.runOldMapper(MapTask.java:453)
	at org.apache.hadoop.mapred.MapTask.run(MapTask.java:343)
	at org.apache.hadoop.mapred.YarnChild$2.run(YarnChild.java:168)
	at java.security.AccessController.doPrivileged(Native Method)
	at javax.security.auth.Subject.doAs(Subject.java:422)
	at org.apache.hadoop.security.UserGroupInformation.doAs(UserGroupInformation.java:1657)
	at org.apache.hadoop.mapred.YarnChild.main(YarnChild.java:162)
&lt;/PRE&gt;&lt;P&gt;
	I guess some library mismatch in the classpath but not sure which one. My Oozie workflow is pretty simple, just reading some files from S3 and print the count:&lt;/P&gt;
&lt;PRE&gt;&amp;lt;workflow-app name="POC-ETL" xmlns="uri:oozie:workflow:0.5"&amp;gt;
        &amp;lt;start to="spark"/&amp;gt;
        &amp;lt;action name="spark"&amp;gt;
                &amp;lt;spark xmlns="uri:oozie:spark-action:0.1"&amp;gt;
                        &amp;lt;job-tracker&amp;gt;${jobTracker}&amp;lt;/job-tracker&amp;gt;
                        &amp;lt;name-node&amp;gt;${nameNode}&amp;lt;/name-node&amp;gt;
                        &amp;lt;configuration&amp;gt;
                                &amp;lt;property&amp;gt;
                                        &amp;lt;name&amp;gt;mapred.compress.map.output&amp;lt;/name&amp;gt;
                                        &amp;lt;value&amp;gt;true&amp;lt;/value&amp;gt;
                                &amp;lt;/property&amp;gt;
                        &amp;lt;/configuration&amp;gt;
                        &amp;lt;master&amp;gt;${master}&amp;lt;/master&amp;gt;
                        &amp;lt;!-- &amp;lt;mode&amp;gt;cluster&amp;lt;/mode&amp;gt; --&amp;gt;
                        &amp;lt;name&amp;gt;Sample&amp;lt;/name&amp;gt;
                        &amp;lt;class&amp;gt;com.example.PrintCount&amp;lt;/class&amp;gt;
                        &amp;lt;jar&amp;gt;${nameNode}/user/${wf:user()}/poc/workflow/lib/print-count.jar&amp;lt;/jar&amp;gt;
                        &amp;lt;spark-opts&amp;gt;spark.driver.extraJavaOptions=-Dhdp.version=2.4.0.0-169&amp;lt;/spark-opts&amp;gt;
                        &amp;lt;arg&amp;gt;s3n://....&amp;lt;/arg&amp;gt;
                &amp;lt;/spark&amp;gt;
                &amp;lt;ok to="end"/&amp;gt;
                &amp;lt;error to="fail"/&amp;gt;
        &amp;lt;/action&amp;gt;
        &amp;lt;kill name="fail"&amp;gt;
                &amp;lt;message&amp;gt;ETL Ingest Failed: error  [${wf:errorMessage(wf:lastErrorNode())}]&amp;lt;/message&amp;gt;
        &amp;lt;/kill&amp;gt;
        &amp;lt;end name="end"/&amp;gt;
&amp;lt;/workflow-app&amp;gt;
&lt;/PRE&gt;&lt;P&gt;
	Here is my job.properties file:&lt;/P&gt;
&lt;PRE&gt;oozie.wf.application.path=${nameNode}/user/cidev/poc/workflow
oozie.use.system.libpath=true
oozie.action.sharelib.for.spark = spark,hcatalog,hive
nameNode=hdfs://hdpmaster.cidev:8020
jobTracker=hdp1.cidev:8050
queueName=default
master=yarn-cluster
&lt;/PRE&gt;&lt;P&gt;
	Here is the list from sharelib Spark:&lt;/P&gt;
&lt;PRE&gt;hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/akka-actor_2.10-2.2.3-shaded-protobuf.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/akka-remote_2.10-2.2.3-shaded-protobuf.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/akka-slf4j_2.10-2.2.3-shaded-protobuf.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/aws-java-sdk-1.7.4.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/azure-storage-2.2.0.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/chill-java-0.3.6.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/chill_2.10-0.3.6.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/colt-1.2.0.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/commons-codec-1.4.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/commons-httpclient-3.1.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/commons-lang-2.4.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/commons-lang3-3.3.2.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/commons-net-2.2.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/compress-lzf-1.0.0.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/concurrent-1.3.4.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/config-1.0.2.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/core-site.xml
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/curator-client-2.5.0.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/curator-framework-2.5.0.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/curator-recipes-2.5.0.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/guava-14.0.1.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/hadoop-aws-2.7.1.2.4.0.0-169.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/hadoop-azure-2.7.1.2.4.0.0-169.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/hdfs-site.xml
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/jackson-annotations-2.2.3.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/jackson-core-2.2.3.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/jackson-databind-2.2.3.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/javax.activation-1.1.0.v201105071233.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/javax.mail.glassfish-1.4.1.v201005082020.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/javax.servlet-3.0.0.v201112011016.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/javax.transaction-1.1.1.v201105210645.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/jblas-1.2.3.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/jets3t-0.7.1.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/jetty-continuation-8.1.14.v20131031.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/jetty-http-8.1.14.v20131031.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/jetty-io-8.1.14.v20131031.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/jetty-jndi-8.1.14.v20131031.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/jetty-plus-8.1.14.v20131031.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/jetty-security-8.1.14.v20131031.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/jetty-server-8.1.14.v20131031.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/jetty-servlet-8.1.14.v20131031.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/jetty-util-8.1.14.v20131031.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/jetty-webapp-8.1.14.v20131031.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/jetty-xml-8.1.14.v20131031.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/jline-2.12.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/joda-time-2.1.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/json4s-ast_2.10-3.2.10.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/json4s-core_2.10-3.2.10.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/json4s-jackson_2.10-3.2.10.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/jsr305-1.3.9.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/kryo-2.21.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/log4j-1.2.16.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/lz4-1.2.0.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/mapred-site.xml
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/metrics-core-3.0.2.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/metrics-graphite-3.0.0.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/metrics-json-3.0.2.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/metrics-jvm-3.0.2.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/minlog-1.2.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/netty-3.6.6.Final.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/netty-all-4.0.23.Final.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/objenesis-1.2.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/oozie-sharelib-spark-4.2.0.2.4.0.0-169.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/paranamer-2.6.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/protobuf-java-2.4.1-shaded.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/py4j-0.8.2.1.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/pyrolite-2.0.1.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/reflectasm-1.07-shaded.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/scala-compiler-2.10.0.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/scala-library-2.10.4.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/scala-reflect-2.10.0.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/scalap-2.10.0.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/slf4j-api-1.6.6.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/slf4j-log4j12-1.6.6.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/snappy-java-1.0.5.3.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/spark-assembly-1.6.0.2.4.0.0-169-hadoop2.7.1.2.4.0.0-169.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/spark-core_2.10-1.1.0.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/spark-graphx_2.10-1.1.0.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/spark-streaming_2.10-1.1.0.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/stream-2.7.0.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/tachyon-0.5.0.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/tachyon-client-0.5.0.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/uncommons-maths-1.2.2a.jar
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/yarn-site.xml
	hdfs://hdpmaster.cidev:8020/user/oozie/share/lib/spark/zookeeper-3.4.6.jar
&lt;/PRE&gt;&lt;P&gt;
	Any helps would be highly appreciated.&lt;/P&gt;&lt;P&gt;
	Thanks in advance.&lt;/P&gt;&lt;P&gt;
	Tishu&lt;/P&gt;</description>
      <pubDate>Fri, 29 Apr 2016 06:42:19 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Oozie-Spark-Action-on-HDP-2-4-NoSuchMethodError-org-apache/m-p/121944#M26517</guid>
      <dc:creator>tusira</dc:creator>
      <dc:date>2016-04-29T06:42:19Z</dc:date>
    </item>
    <item>
      <title>Re: Oozie Spark Action on HDP 2.4  - NoSuchMethodError: org.apache.spark.util.Utils$.DEFAULT_DRIVER_MEM_MB()</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Oozie-Spark-Action-on-HDP-2-4-NoSuchMethodError-org-apache/m-p/121945#M26518</link>
      <description>&lt;P&gt;Hi Chokroma,&lt;/P&gt;&lt;P&gt;so the action is still not supported. However there is a tech note out to use it. Seems you used that?&lt;/P&gt;&lt;P&gt;&lt;A href="http://docs.hortonworks.com/HDPDocuments/HDP2/HDP-2.4.0/bk_HDP_RelNotes/content/community_features.html" target="_blank"&gt;http://docs.hortonworks.com/HDPDocuments/HDP2/HDP-2.4.0/bk_HDP_RelNotes/content/community_features.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;The method you mention was added in Spark 1.5 so it seems like you have an old jar file somewhere. It should be the spark assembly. The one in the share lib is 1.6 so that cannot be it. You must have an old version around somewhere.&lt;/P&gt;&lt;P&gt;&lt;A href="https://issues.apache.org/jira/browse/SPARK-3071" target="_blank"&gt;https://issues.apache.org/jira/browse/SPARK-3071&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Apr 2016 17:19:39 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Oozie-Spark-Action-on-HDP-2-4-NoSuchMethodError-org-apache/m-p/121945#M26518</guid>
      <dc:creator>bleonhardi</dc:creator>
      <dc:date>2016-04-29T17:19:39Z</dc:date>
    </item>
    <item>
      <title>Re: Oozie Spark Action on HDP 2.4  - NoSuchMethodError: org.apache.spark.util.Utils$.DEFAULT_DRIVER_MEM_MB()</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Oozie-Spark-Action-on-HDP-2-4-NoSuchMethodError-org-apache/m-p/121946#M26519</link>
      <description>&lt;P&gt;Thanks &lt;A rel="user" href="https://community.cloudera.com/users/168/bleonhardi.html" nodeid="168"&gt;@Benjamin Leonhardi&lt;/A&gt;, appreciate it. I was under impression that Spark action is now supported under HDP 2.4. My bad &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I checked classpath but didn't find why some old jars are still there. In the current cluster, we initially installed HDP 2.3.4, then we upgraded to HDP 2.4. Even in HDP 2.3.4, Spark 1.5.2 was there so it should have found that method. So looks like it still pointing to old version of Spark somehow.&lt;/P&gt;</description>
      <pubDate>Sun, 01 May 2016 12:45:09 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Oozie-Spark-Action-on-HDP-2-4-NoSuchMethodError-org-apache/m-p/121946#M26519</guid>
      <dc:creator>tusira</dc:creator>
      <dc:date>2016-05-01T12:45:09Z</dc:date>
    </item>
    <item>
      <title>Re: Oozie Spark Action on HDP 2.4  - NoSuchMethodError: org.apache.spark.util.Utils$.DEFAULT_DRIVER_MEM_MB()</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Oozie-Spark-Action-on-HDP-2-4-NoSuchMethodError-org-apache/m-p/121947#M26520</link>
      <description>&lt;P&gt;Hi &lt;A rel="user" href="https://community.cloudera.com/users/10066/dipaish.html" nodeid="10066"&gt;@Chokroma Tusira&lt;/A&gt;, try removing all jars from your Oozie share/lib Spark directory in HDFS except those listed &lt;A href="https://community.hortonworks.com/questions/7014/oozie-sparkaction-throwing-javalangnosuchmethoderr.html"&gt;here&lt;/A&gt;, actually in case of HDP-2.4 you can start with just these two:&lt;/P&gt;&lt;PRE&gt;oozie-sharelib-spark-4.2.0.2.4.0.0-169.jar
spark-assembly-1.6.0.2.4.0.0-169-hadoop2.7.1.2.4.0.0-169.jar&lt;/PRE&gt;&lt;P&gt;As &amp;lt;spark-opts&amp;gt; I put the number of executors and their memory, it worked without hdp.version. Then restart Oozie, and retry your Spark action.&lt;/P&gt;</description>
      <pubDate>Wed, 04 May 2016 00:03:33 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Oozie-Spark-Action-on-HDP-2-4-NoSuchMethodError-org-apache/m-p/121947#M26520</guid>
      <dc:creator>pminovic</dc:creator>
      <dc:date>2016-05-04T00:03:33Z</dc:date>
    </item>
    <item>
      <title>Re: Oozie Spark Action on HDP 2.4  - NoSuchMethodError: org.apache.spark.util.Utils$.DEFAULT_DRIVER_MEM_MB()</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Oozie-Spark-Action-on-HDP-2-4-NoSuchMethodError-org-apache/m-p/121948#M26521</link>
      <description>&lt;P&gt;
	Thanks &lt;A rel="user" href="https://community.cloudera.com/users/177/pminovic.html" nodeid="177"&gt;@Predrag Minovic&lt;/A&gt;, I got past that error but now it's getting timed out. Looks like when the job is placed, its pointing to invalid resource manager url. Not sure why it's not picking up the right configuration.&lt;/P&gt;&lt;PRE&gt;2016-05-03 17:04:09,439 INFO [main] org.apache.hadoop.yarn.client.RMProxy: Connecting to ResourceManager at /0.0.0.0:8032
2016-05-03 17:04:10,448 INFO [main] org.apache.hadoop.ipc.Client: Retrying connect to server: 0.0.0.0/0.0.0.0:8032. Already tried 0 time(s); retry policy is RetryUpToMaximumCountWithFixedSleep(maxRetries=10, sleepTime=1000 MILLISECONDS)
2016-05-03 17:04:11,449 INFO [main] org.apache.hadoop.ipc.Client: Retrying connect to server: 0.0.0.0/0.0.0.0:8032. Already tried 1 time(s); retry policy is RetryUpToMaximumCountWithFixedSleep(maxRetries=10, sleepTime=1000 MILLISECONDS)
2016-05-03 17:04:12,450 INFO [main] org.apache.hadoop.ipc.Client: Retrying connect to server: 0.0.0.0/0.0.0.0:8032. Already tried 2 time(s); retry policy is RetryUpToMaximumCountWithFixedSleep(maxRetries=10, sleepTime=1000 MILLISECONDS)
2016-05-03 17:04:13,450 INFO [main] org.apache.hadoop.ipc.Client: Retrying connect to server: 0.0.0.0/0.0.0.0:8032. Already tried 3 time(s); retry policy is RetryUpToMaximumCountWithFixedSleep(maxRetries=10, sleepTime=1000 MILLISECONDS)
2016-05-03 17:04:14,451 INFO [main] org.apache.hadoop.ipc.Client: Retrying connect to server: 0.0.0.0/0.0.0.0:8032. Already tried 4 time(s); retry policy is RetryUpToMaximumCountWithFixedSleep(maxRetries=10, sleepTime=1000 MILLISECONDS)
2016-05-03 17:04:15,452 INFO [main] org.apache.hadoop.ipc.Client: Retrying connect to server: 0.0.0.0/0.0.0.0:8032. Already tried 5 time(s); retry policy is RetryUpToMaximumCountWithFixedSleep(maxRetries=10, sleepTime=1000 MILLISECONDS)
&lt;/PRE&gt;&lt;P&gt;By the way, should we ignore this warning?&lt;/P&gt;&lt;PRE&gt; org.apache.spark.SparkConf: The configuration key 'spark.yarn.applicationMaster.waitTries' has been deprecated as of Spark 1.3 and and may be removed in the future. Please use the new key 'spark.yarn.am.waitTime' instead.
&lt;/PRE&gt;&lt;P&gt;Thanks again.&lt;/P&gt;</description>
      <pubDate>Wed, 04 May 2016 04:15:12 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Oozie-Spark-Action-on-HDP-2-4-NoSuchMethodError-org-apache/m-p/121948#M26521</guid>
      <dc:creator>tusira</dc:creator>
      <dc:date>2016-05-04T04:15:12Z</dc:date>
    </item>
    <item>
      <title>Re: Oozie Spark Action on HDP 2.4  - NoSuchMethodError: org.apache.spark.util.Utils$.DEFAULT_DRIVER_MEM_MB()</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Oozie-Spark-Action-on-HDP-2-4-NoSuchMethodError-org-apache/m-p/121949#M26522</link>
      <description>&lt;P&gt;Check your jobTracker setting in your job.properties, you had "jobTracker=hdp1.cidev:8050" in your question. And make sure you use "-conf job.properties" when you submit your job.&lt;/P&gt;</description>
      <pubDate>Wed, 04 May 2016 08:39:52 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Oozie-Spark-Action-on-HDP-2-4-NoSuchMethodError-org-apache/m-p/121949#M26522</guid>
      <dc:creator>pminovic</dc:creator>
      <dc:date>2016-05-04T08:39:52Z</dc:date>
    </item>
    <item>
      <title>Re: Oozie Spark Action on HDP 2.4  - NoSuchMethodError: org.apache.spark.util.Utils$.DEFAULT_DRIVER_MEM_MB()</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Oozie-Spark-Action-on-HDP-2-4-NoSuchMethodError-org-apache/m-p/121950#M26523</link>
      <description>&lt;P&gt;Thanks again &lt;A rel="user" href="https://community.cloudera.com/users/177/pminovic.html" nodeid="177"&gt;@Predrag Minovic&lt;/A&gt;, I tried that then I saw this:&lt;/P&gt;&lt;P&gt;
	&lt;A href="https://community.hortonworks.com/questions/11599/how-to-change-resourcemanager-port-on-oozie.html"&gt;https://community.hortonworks.com/questions/11599/how-to-change-resourcemanager-port-on-oozie.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;
	&lt;A href="https://community.hortonworks.com/questions/21248/spark-action-always-submit-to-00008032.html"&gt;https://community.hortonworks.com/questions/21248/spark-action-always-submit-to-00008032.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;
	Looks like it's a known issue. As a work around, I changed my resource manager port to 8032 and restarted again but didn't help. It was still pointing to 0.0.0.0/0.0.0.0:8032. Though at this point, the port is right, but not the hostname, it should be hdp1.cidev/hdp1.cidev:8032. So looks like Oozie/Spark action is not picking up the right configuration. Any clue?&lt;/P&gt;&lt;P&gt;	Thanks again.&lt;/P&gt;</description>
      <pubDate>Thu, 05 May 2016 08:08:58 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Oozie-Spark-Action-on-HDP-2-4-NoSuchMethodError-org-apache/m-p/121950#M26523</guid>
      <dc:creator>tusira</dc:creator>
      <dc:date>2016-05-05T08:08:58Z</dc:date>
    </item>
    <item>
      <title>Re: Oozie Spark Action on HDP 2.4  - NoSuchMethodError: org.apache.spark.util.Utils$.DEFAULT_DRIVER_MEM_MB()</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Oozie-Spark-Action-on-HDP-2-4-NoSuchMethodError-org-apache/m-p/121951#M26524</link>
      <description>&lt;P&gt;Do you still have 4 *-site.xml files in your Oozie share/lib Spark directory in HDFS? If not upload them to HDFS, or even better, to be sure, remove them, and upload the latest versions. Then restart Oozie and retry your action.&lt;/P&gt;</description>
      <pubDate>Thu, 05 May 2016 11:16:37 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Oozie-Spark-Action-on-HDP-2-4-NoSuchMethodError-org-apache/m-p/121951#M26524</guid>
      <dc:creator>pminovic</dc:creator>
      <dc:date>2016-05-05T11:16:37Z</dc:date>
    </item>
    <item>
      <title>Re: Oozie Spark Action on HDP 2.4  - NoSuchMethodError: org.apache.spark.util.Utils$.DEFAULT_DRIVER_MEM_MB()</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Oozie-Spark-Action-on-HDP-2-4-NoSuchMethodError-org-apache/m-p/121952#M26525</link>
      <description>&lt;P&gt;Oozie Spark action is coming in HDP 2.4.2, it is not supported in versions of HDP below that.&lt;/P&gt;</description>
      <pubDate>Thu, 05 May 2016 14:50:14 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Oozie-Spark-Action-on-HDP-2-4-NoSuchMethodError-org-apache/m-p/121952#M26525</guid>
      <dc:creator>aervits</dc:creator>
      <dc:date>2016-05-05T14:50:14Z</dc:date>
    </item>
    <item>
      <title>Re: Oozie Spark Action on HDP 2.4  - NoSuchMethodError: org.apache.spark.util.Utils$.DEFAULT_DRIVER_MEM_MB()</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Oozie-Spark-Action-on-HDP-2-4-NoSuchMethodError-org-apache/m-p/121953#M26526</link>
      <description>&lt;P style="margin-left: 40px;"&gt;That did the trick! Thanks a lot &lt;A rel="user" href="https://community.cloudera.com/users/177/pminovic.html" nodeid="177"&gt;@Predrag Minovic&lt;/A&gt;. Should I consider that as a work-around for now? I never had to do that for other Oozie actions. Thanks again.&lt;/P&gt;</description>
      <pubDate>Fri, 06 May 2016 00:20:40 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Oozie-Spark-Action-on-HDP-2-4-NoSuchMethodError-org-apache/m-p/121953#M26526</guid>
      <dc:creator>tusira</dc:creator>
      <dc:date>2016-05-06T00:20:40Z</dc:date>
    </item>
    <item>
      <title>Re: Oozie Spark Action on HDP 2.4  - NoSuchMethodError: org.apache.spark.util.Utils$.DEFAULT_DRIVER_MEM_MB()</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Oozie-Spark-Action-on-HDP-2-4-NoSuchMethodError-org-apache/m-p/121954#M26527</link>
      <description>&lt;P&gt;Hi &lt;A rel="user" href="https://community.cloudera.com/users/10066/dipaish.html" nodeid="10066"&gt;@Chokroma Tusir&lt;/A&gt;, yes, a work-around in this version of HDP. As the docs say "there is a community solution", well, we are the community! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; And thanks for a rep point! Can you also accept the answer to help us manage answered questions. Tnx! &lt;/P&gt;</description>
      <pubDate>Fri, 06 May 2016 18:33:12 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Oozie-Spark-Action-on-HDP-2-4-NoSuchMethodError-org-apache/m-p/121954#M26527</guid>
      <dc:creator>pminovic</dc:creator>
      <dc:date>2016-05-06T18:33:12Z</dc:date>
    </item>
    <item>
      <title>Re: Oozie Spark Action on HDP 2.4  - NoSuchMethodError: org.apache.spark.util.Utils$.DEFAULT_DRIVER_MEM_MB()</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Oozie-Spark-Action-on-HDP-2-4-NoSuchMethodError-org-apache/m-p/121955#M26528</link>
      <description>&lt;P&gt;
&lt;STRONG&gt;Keep it clear and concise.&lt;/STRONG&gt;
Other users will only be able t&lt;/P&gt;</description>
      <pubDate>Fri, 06 May 2016 22:43:25 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Oozie-Spark-Action-on-HDP-2-4-NoSuchMethodError-org-apache/m-p/121955#M26528</guid>
      <dc:creator>dzone</dc:creator>
      <dc:date>2016-05-06T22:43:25Z</dc:date>
    </item>
    <item>
      <title>Re: Oozie Spark Action on HDP 2.4  - NoSuchMethodError: org.apache.spark.util.Utils$.DEFAULT_DRIVER_MEM_MB()</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Oozie-Spark-Action-on-HDP-2-4-NoSuchMethodError-org-apache/m-p/121956#M26529</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;i am facing similar issue while running spark action with oozie.&lt;/P&gt;&lt;P&gt;Have placed only above two mentioned jars and remove all the other jars from /user/share/lib/spark/* folder.&lt;/P&gt;&lt;P&gt;but still getting the same error.&lt;/P&gt;&lt;OL&gt;
&lt;LI&gt;FailingOozieLauncher,Mainclass[org.apache.oozie.action.hadoop.SparkMain], main() threw exception, org.apache.spark.util.Utils$.DEFAULT_DRIVER_MEM_MB()I&lt;/LI&gt;&lt;LI&gt;java.lang.NoSuchMethodError: org.apache.spark.util.Utils$.DEFAULT_DRIVER_MEM_MB()I&lt;/LI&gt;&lt;LI&gt;	at org.apache.spark.deploy.yarn.ClientArguments.&amp;lt;init&amp;gt;(ClientArguments.scala:49)&lt;/LI&gt;&lt;LI&gt;	at org.apache.spark.deploy.yarn.Client$.main(Client.scala:1120)&lt;/LI&gt;&lt;LI&gt;	at org.apache.spark.deploy.yarn.Client.main(Client.scala)&lt;/LI&gt;&lt;LI&gt;	at sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethod)&lt;/LI&gt;&lt;LI&gt;	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)&lt;/LI&gt;&lt;LI&gt;	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)&lt;/LI&gt;&lt;LI&gt;	at java.lang.reflect.Method.invoke(Method.java:497)&lt;/LI&gt;&lt;LI&gt;	at org.apache.spark.deploy.SparkSubmit$.launch(SparkSubmit.scala:328)&lt;/LI&gt;&lt;LI&gt;	at org.apache.spark.deploy.SparkSubmit$.main(SparkSubmit.scala:75)&lt;/LI&gt;&lt;LI&gt;	at org.apache.spark.deploy.SparkSubmit.main(SparkSubmit.scala)&lt;/LI&gt;&lt;LI&gt;	at org.apache.oozie.action.hadoop.SparkMain.runSpark(SparkMain.java:104)&lt;/LI&gt;&lt;LI&gt;	at org.apache.oozie.action.hadoop.SparkMain.run(SparkMain.java:95)&lt;/LI&gt;&lt;LI&gt;	at org.apache.oozie.action.hadoop.LauncherMain.run(LauncherMain.java:47)&lt;/LI&gt;&lt;LI&gt;	at org.apache.oozie.action.hadoop.SparkMain.main(SparkMain.java:38)&lt;/LI&gt;&lt;LI&gt;	at sun.reflect.NativeMethodAccessorImpl.invoke0(NativeMethod)&lt;/LI&gt;&lt;LI&gt;	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)&lt;/LI&gt;&lt;LI&gt;	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)&lt;/LI&gt;&lt;LI&gt;	at java.lang.reflect.Method.invoke(Method.java:497)&lt;/LI&gt;&lt;LI&gt;	at org.apache.oozie.action.hadoop.LauncherMapper.map(LauncherMapper.java:241)&lt;/LI&gt;&lt;LI&gt;	at org.apache.hadoop.mapred.MapRunner.run(MapRunner.java:54)&lt;/LI&gt;&lt;LI&gt;	at org.apache.hadoop.mapred.MapTask.runOldMapper(MapTask.java:453)&lt;/LI&gt;&lt;LI&gt;	at org.apache.hadoop.mapred.MapTask.run(MapTask.java:343)&lt;/LI&gt;&lt;LI&gt;	at org.apache.hadoop.mapred.YarnChild$2.run(YarnChild.java:168)&lt;/LI&gt;&lt;LI&gt;	at java.security.AccessController.doPrivileged(NativeMethod)&lt;/LI&gt;&lt;LI&gt;	at javax.security.auth.Subject.doAs(Subject.java:422)&lt;/LI&gt;&lt;LI&gt;	at org.apache.hadoop.security.UserGroupInformation.doAs(UserGroupInformation.java:1657)&lt;/LI&gt;&lt;LI&gt;	at org.apache.hadoop.mapred.YarnChild.main(YarnChild.java:162)&lt;/LI&gt;&lt;/OL&gt;</description>
      <pubDate>Thu, 21 Jul 2016 19:10:02 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Oozie-Spark-Action-on-HDP-2-4-NoSuchMethodError-org-apache/m-p/121956#M26529</guid>
      <dc:creator>kanwar_singh</dc:creator>
      <dc:date>2016-07-21T19:10:02Z</dc:date>
    </item>
    <item>
      <title>Re: Oozie Spark Action on HDP 2.4  - NoSuchMethodError: org.apache.spark.util.Utils$.DEFAULT_DRIVER_MEM_MB()</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Oozie-Spark-Action-on-HDP-2-4-NoSuchMethodError-org-apache/m-p/121957#M26530</link>
      <description>&lt;P&gt;I am using hdp 2.4 version with spark 1.6.0 version.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jul 2016 19:15:05 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Oozie-Spark-Action-on-HDP-2-4-NoSuchMethodError-org-apache/m-p/121957#M26530</guid>
      <dc:creator>kanwar_singh</dc:creator>
      <dc:date>2016-07-21T19:15:05Z</dc:date>
    </item>
    <item>
      <title>Re: Oozie Spark Action on HDP 2.4  - NoSuchMethodError: org.apache.spark.util.Utils$.DEFAULT_DRIVER_MEM_MB()</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Oozie-Spark-Action-on-HDP-2-4-NoSuchMethodError-org-apache/m-p/121958#M26531</link>
      <description>&lt;P&gt;Hi Kanwar,&lt;/P&gt;&lt;P&gt;Did you place *-site.xml files in Oozie share lib? You need to place *-site.xml files in Oozie share lib and then update the share lib and restart Oozie. Hope it helps.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jul 2016 23:23:48 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Oozie-Spark-Action-on-HDP-2-4-NoSuchMethodError-org-apache/m-p/121958#M26531</guid>
      <dc:creator>tusira</dc:creator>
      <dc:date>2016-07-21T23:23:48Z</dc:date>
    </item>
    <item>
      <title>Re: Oozie Spark Action on HDP 2.4  - NoSuchMethodError: org.apache.spark.util.Utils$.DEFAULT_DRIVER_MEM_MB()</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Oozie-Spark-Action-on-HDP-2-4-NoSuchMethodError-org-apache/m-p/121959#M26532</link>
      <description>&lt;P&gt;Hi Chokroma,&lt;/P&gt;&lt;P&gt;I have placed oozie-site.xml,hive-site.xml,core-site.xml and tez-site.xml in oozie share lib spark folder in hdfs.&lt;/P&gt;&lt;P&gt;That error got resolved and now while running spark action ,am getting below error:&lt;/P&gt;&lt;P&gt;Failing Oozie Launcher, Main class [org.apache.oozie.action.hadoop.SparkMain], main() threw exception, File file:/hadoop/yarn/local/usercache/root/appcache/application_1469191898202_0003/container_108_1469191898202_0003_01_000002/–conf does not exist
java.io.FileNotFoundException: File file:/hadoop/yarn/local/usercache/root/appcache/application_1469191898202_0003/container_e108_1469191898202_0003_01_000002/–conf does not exist
        at org.apache.hadoop.fs.RawLocalFileSystem.deprecatedGetFileStatus(RawLocalFileSystem.java:609)
        at org.apache.hadoop.fs.RawLocalFileSystem.getFileLinkStatusInternal(RawLocalFileSystem.java:822)
        at org.apache.hadoop.fs.RawLocalFileSystem.getFileStatus(RawLocalFileSystem.java:599)
        at org.apache.hadoop.fs.DelegateToFileSystem.getFileStatus(DelegateToFileSystem.java:125)
        at org.apache.hadoop.fs.AbstractFileSystem.resolvePath(AbstractFileSystem.java:467)
        at org.apache.hadoop.fs.FilterFs.resolvePath(FilterFs.java:157)
        at org.apache.hadoop.fs.FileContext$25.next(FileContext.java:2193)
        at org.apache.hadoop.fs.FileContext$25.next(FileContext.java:2189)
        at org.apache.hadoop.fs.FSLinkResolver.resolve(FSLinkResolver.java:90)
        at org.apache.hadoop.fs.FileContext.resolve(FileContext.java:2189)
        at org.apache.hadoop.fs.FileContext.resolvePath(FileContext.java:601)
        at org.apache.spark.deploy.yarn.Client.copyFileToRemote(Client.scala:327)
        at org.apache.spark.deploy.yarn.Client.org$apache$spark$deploy$yarn$Client$distribute$1(Client.scala:407)
        at org.apache.spark.deploy.yarn.Client$anonfun$prepareLocalResources$5.apply(Client.scala:446)
        at org.apache.spark.deploy.yarn.Client$anonfun$prepareLocalResources$5.apply(Client.scala:444)
        at scala.collection.immutable.List.foreach(List.scala:318)
        at org.apache.spark.deploy.yarn.Client.prepareLocalResources(Client.scala:444)
        at org.apache.spark.deploy.yarn.Client.createContainerLaunchContext(Client.scala:722)
        at org.apache.spark.deploy.yarn.Client.submitApplication(Client.scala:142)
        at org.apache.spark.deploy.yarn.Client.run(Client.scala:1065)
        at org.apache.spark.deploy.yarn.Client$.main(Client.scala:1125)
        at org.apache.spark.deploy.yarn.Client.main(Client.scala)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:606)
        at org.apache.spark.deploy.SparkSubmit$.org$apache$spark$deploy$SparkSubmit$runMain(SparkSubmit.scala:731)
        at org.apache.spark.deploy.SparkSubmit$.doRunMain$1(SparkSubmit.scala:181)
        at org.apache.spark.deploy.SparkSubmit$.submit(SparkSubmit.scala:206)
        at org.apache.spark.deploy.SparkSubmit$.main(SparkSubmit.scala:121)
        at org.apache.spark.deploy.SparkSubmit.main(SparkSubmit.scala)
        at org.apache.oozie.action.hadoop.SparkMain.runSpark(SparkMain.java:104)
        at org.apache.oozie.action.hadoop.SparkMain.run(SparkMain.java:95)
        at org.apache.oozie.action.hadoop.LauncherMain.run(LauncherMain.java:47)
        at org.apache.oozie.action.hadoop.SparkMain.main(SparkMain.java:38)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:606)
        at org.apache.oozie.action.hadoop.LauncherMapper.map(LauncherMapper.java:241)
        at org.apache.hadoop.mapred.MapRunner.run(MapRunner.java:54)
        at org.apache.hadoop.mapred.MapTask.runOldMapper(MapTask.java:453)
        at org.apache.hadoop.mapred.MapTask.run(MapTask.java:343)
        at org.apache.hadoop.mapred.YarnChild$2.run(YarnChild.java:168)
        at java.security.AccessController.doPrivileged(Native Method)
        at javax.security.auth.Subject.doAs(Subject.java:415)
        at org.apache.hadoop.security.UserGroupInformation.doAs(UserGroupInformation.java:1657)
        at org.apache.hadoop.mapred.YarnChild.main(YarnChild.java:162)&lt;/P&gt;</description>
      <pubDate>Fri, 22 Jul 2016 20:30:46 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Oozie-Spark-Action-on-HDP-2-4-NoSuchMethodError-org-apache/m-p/121959#M26532</guid>
      <dc:creator>kanwar_singh</dc:creator>
      <dc:date>2016-07-22T20:30:46Z</dc:date>
    </item>
    <item>
      <title>Re: Oozie Spark Action on HDP 2.4  - NoSuchMethodError: org.apache.spark.util.Utils$.DEFAULT_DRIVER_MEM_MB()</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Oozie-Spark-Action-on-HDP-2-4-NoSuchMethodError-org-apache/m-p/121960#M26533</link>
      <description>&lt;P&gt;it is showing error:&lt;/P&gt;&lt;P&gt;2016-07-22 14:28:55,660 INFO [main] org.apache.spark.deploy.yarn.Client: Source and destination file systems are the same. Not copying file:/hadoop/yarn/local/usercache/root/appcache/application_1469194745655_0011/container_e109_1469194745655_0011_01_000002/–conf&lt;/P&gt;</description>
      <pubDate>Fri, 22 Jul 2016 21:35:13 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Oozie-Spark-Action-on-HDP-2-4-NoSuchMethodError-org-apache/m-p/121960#M26533</guid>
      <dc:creator>kanwar_singh</dc:creator>
      <dc:date>2016-07-22T21:35:13Z</dc:date>
    </item>
  </channel>
</rss>

