<?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: Yarn and submitting MapReduce jobs in Support Questions</title>
    <link>https://community.cloudera.com/t5/Support-Questions/Yarn-and-submitting-MapReduce-jobs/m-p/707#M43042</link>
    <description>&lt;P&gt;Thanks Harsh,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That was the tip I needed. I had already changed the map and reduce memory (and pretty much everything else) but I didn't know about the&amp;nbsp;yarn.app.mapreduce.am.resource.mb and for some reason that was messed up.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The ec2 setup of CFM put the 512 in my data nodes and 1.5 G in my node that ran all the master services. So the other way around. After giving the worker nodes 2.5 G and reducing the master to 512 it started running.&lt;/P&gt;&lt;P&gt;I used the CFM to set things up, so this might be a bug there.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best&lt;/P&gt;&lt;P&gt;Mike&lt;/P&gt;</description>
    <pubDate>Mon, 19 Aug 2013 07:29:01 GMT</pubDate>
    <dc:creator>mikopp</dc:creator>
    <dc:date>2013-08-19T07:29:01Z</dc:date>
    <item>
      <title>Yarn and submitting MapReduce jobs</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Yarn-and-submitting-MapReduce-jobs/m-p/491#M43039</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I used Cloudera Manager to setup a Cloudera Cluster in EC2 and have it setup to run Yarn instead of MRv1. However whenever I submit any jobs, the job gets accepted and is listed in the Resource Manager Web UI as accepted with final status undefined and tracking undefined. The job never starts I can find no errors whatsoever in any logs. Does anybody have an Idea why this could be? I suspect that the resource manager decides that there aren't the necessary resources available to run the job, jowever I have the tasks configured &amp;nbsp;to run with 512 MB and that is definitely available...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;Mike&lt;/P&gt;</description>
      <pubDate>Fri, 16 Sep 2022 08:46:48 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Yarn-and-submitting-MapReduce-jobs/m-p/491#M43039</guid>
      <dc:creator>mikopp</dc:creator>
      <dc:date>2022-09-16T08:46:48Z</dc:date>
    </item>
    <item>
      <title>Re: Yarn and submitting MapReduce jobs</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Yarn-and-submitting-MapReduce-jobs/m-p/503#M43040</link>
      <description>&lt;P&gt;Is the cluster created as explained in&amp;nbsp;&lt;A target="_blank" href="http://blog.cloudera.com/blog/2013/03/how-to-create-a-cdh-cluster-on-amazon-ec2-via-cloudera-manager/"&gt;http://blog.cloudera.com/blog/2013/03/how-to-create-a-cdh-cluster-on-amazon-ec2-via-cloudera-manager/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 14 Aug 2013 14:17:08 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Yarn-and-submitting-MapReduce-jobs/m-p/503#M43040</guid>
      <dc:creator>dvohra</dc:creator>
      <dc:date>2013-08-14T14:17:08Z</dc:date>
    </item>
    <item>
      <title>Re: Yarn and submitting MapReduce jobs</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Yarn-and-submitting-MapReduce-jobs/m-p/657#M43041</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/465"&gt;@mikopp&lt;/a&gt; wrote:&lt;BR /&gt;&lt;P&gt;I suspect that the resource manager decides that there aren't the necessary resources available to run the job, jowever I have the tasks configured &amp;nbsp;to run with 512 MB and that is definitely available...&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Your suspicion is mostly true given the described symptoms. The way RM sees resources is not tied to the hardware, but is instead tied to how much an NM publishes per its configuration of &lt;EM&gt;yarn.nodemanager.resource.memory-mb&lt;/EM&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try to resubmit after lowering the values of the following properties (Defaults indicated):&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;mapreduce.map.memory.mb (1024 MB)&lt;/LI&gt;&lt;LI&gt;mapreduce.reduce.memory.mb (1024 MB)&lt;/LI&gt;&lt;LI&gt;yarn.app.mapreduce.am.resource.mb (1536 MB)&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Sun, 18 Aug 2013 20:35:31 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Yarn-and-submitting-MapReduce-jobs/m-p/657#M43041</guid>
      <dc:creator>Harsh J</dc:creator>
      <dc:date>2013-08-18T20:35:31Z</dc:date>
    </item>
    <item>
      <title>Re: Yarn and submitting MapReduce jobs</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Yarn-and-submitting-MapReduce-jobs/m-p/707#M43042</link>
      <description>&lt;P&gt;Thanks Harsh,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That was the tip I needed. I had already changed the map and reduce memory (and pretty much everything else) but I didn't know about the&amp;nbsp;yarn.app.mapreduce.am.resource.mb and for some reason that was messed up.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The ec2 setup of CFM put the 512 in my data nodes and 1.5 G in my node that ran all the master services. So the other way around. After giving the worker nodes 2.5 G and reducing the master to 512 it started running.&lt;/P&gt;&lt;P&gt;I used the CFM to set things up, so this might be a bug there.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best&lt;/P&gt;&lt;P&gt;Mike&lt;/P&gt;</description>
      <pubDate>Mon, 19 Aug 2013 07:29:01 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Yarn-and-submitting-MapReduce-jobs/m-p/707#M43042</guid>
      <dc:creator>mikopp</dc:creator>
      <dc:date>2013-08-19T07:29:01Z</dc:date>
    </item>
    <item>
      <title>Re: Yarn and submitting MapReduce jobs</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Yarn-and-submitting-MapReduce-jobs/m-p/4737#M43043</link>
      <description>&lt;P&gt;I am also facing the similar issue. Let me see if this solution works.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jan 2014 14:43:05 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Yarn-and-submitting-MapReduce-jobs/m-p/4737#M43043</guid>
      <dc:creator>gp1s</dc:creator>
      <dc:date>2014-01-09T14:43:05Z</dc:date>
    </item>
    <item>
      <title>Re: Yarn and submitting MapReduce jobs</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Yarn-and-submitting-MapReduce-jobs/m-p/4739#M43044</link>
      <description>&lt;P&gt;I have successfully enabled the YARN framework in CDH 4.5 but not able to execute a MR appplication.&lt;BR /&gt;Please find the attached doc.&lt;BR /&gt;&lt;BR /&gt;Am i missing something ?&lt;BR /&gt;&lt;BR /&gt;I can easily do the same on Apache Hadoop 2.0 using numerous blogs and forums but not on highly customized CDH 4.5.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jan 2014 14:43:51 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Yarn-and-submitting-MapReduce-jobs/m-p/4739#M43044</guid>
      <dc:creator>gp1s</dc:creator>
      <dc:date>2014-01-09T14:43:51Z</dc:date>
    </item>
    <item>
      <title>Re: Yarn and submitting MapReduce jobs</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Yarn-and-submitting-MapReduce-jobs/m-p/21562#M43045</link>
      <description>&lt;P&gt;Hello Guys,&lt;/P&gt;&lt;P&gt;I have created EC2 Cluster &amp;nbsp;and installed CDH 5(Just did as said in Cloudera website), but whenever i am starting my cloudera manager, the PU usuage is always showing as 100% . And none od Map reduce job are running, when i run the same, the job are not really running and stops at below step.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;14/11/13 23:17:18 INFO mapreduce.Job: Running job: job_1415938229059_0001&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When i am checking the Final Status, it says undefined, I beleive, it might be the issue with some configuration.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any Pointers.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;--Vijay&lt;/P&gt;</description>
      <pubDate>Fri, 14 Nov 2014 04:29:23 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Yarn-and-submitting-MapReduce-jobs/m-p/21562#M43045</guid>
      <dc:creator>Raj_1111</dc:creator>
      <dc:date>2014-11-14T04:29:23Z</dc:date>
    </item>
    <item>
      <title>Re: Yarn and submitting MapReduce jobs</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Yarn-and-submitting-MapReduce-jobs/m-p/21564#M43046</link>
      <description>&lt;P&gt;i am using m3.large...is its a Problem?&lt;/P&gt;</description>
      <pubDate>Fri, 14 Nov 2014 04:54:10 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Yarn-and-submitting-MapReduce-jobs/m-p/21564#M43046</guid>
      <dc:creator>Raj_1111</dc:creator>
      <dc:date>2014-11-14T04:54:10Z</dc:date>
    </item>
    <item>
      <title>Re: Yarn and submitting MapReduce jobs</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Yarn-and-submitting-MapReduce-jobs/m-p/21844#M43047</link>
      <description>&lt;P&gt;Fixed the same. Problem with the Yarn Setting. Set the default values via Dyanmic Resource Pools.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Nov 2014 04:47:42 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Yarn-and-submitting-MapReduce-jobs/m-p/21844#M43047</guid>
      <dc:creator>Raj_1111</dc:creator>
      <dc:date>2014-11-20T04:47:42Z</dc:date>
    </item>
    <item>
      <title>Re: Yarn and submitting MapReduce jobs</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Yarn-and-submitting-MapReduce-jobs/m-p/28150#M43048</link>
      <description>&lt;P&gt;Lowering the params didn't work for me. Is there any other information I can verify?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;-Shankar&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jun 2015 00:54:10 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Yarn-and-submitting-MapReduce-jobs/m-p/28150#M43048</guid>
      <dc:creator>SANKARA TELUKUTLA</dc:creator>
      <dc:date>2015-06-03T00:54:10Z</dc:date>
    </item>
  </channel>
</rss>

