<?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: pig script status running but always remain at zero percent ? in Archives of Support Questions (Read Only)</title>
    <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/pig-script-status-running-but-always-remain-at-zero-percent/m-p/130380#M18443</link>
    <description>&lt;P&gt;Could be a lot of things: Anything from yarn queue misconfigured to job just takes a long time. &lt;/P&gt;&lt;P&gt;Have a look into the resourcemanager UI (:8088) and get the logs for the job that is being kicked off. You can see if the job is kicked off if containers have been allocated and are running and if he is reading/writing data. ( Don't use tez in the beginning I would figure out first what is wrong with the job or yarn. )&lt;/P&gt;&lt;P&gt;So &lt;/P&gt;&lt;P&gt;-&amp;gt; go to Resourcemanager UI&lt;/P&gt;&lt;P&gt;-&amp;gt; Click on the job that is kicked off ( you can see the job name in pig or just look for one running and pig ) &lt;/P&gt;&lt;P&gt;-&amp;gt; Click on Application Master&lt;/P&gt;&lt;P&gt;-&amp;gt; You should see all containers started for it. IF there is none you might have a yarn queue problem &lt;/P&gt;&lt;P&gt;-&amp;gt; If mappers are started click on Maps ( lower right ) and check if they are running and perhaps in the logs to see what is going on. &lt;/P&gt;</description>
    <pubDate>Mon, 08 Feb 2016 20:30:12 GMT</pubDate>
    <dc:creator>bleonhardi</dc:creator>
    <dc:date>2016-02-08T20:30:12Z</dc:date>
    <item>
      <title>pig script status running but always remain at zero percent ?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/pig-script-status-running-but-always-remain-at-zero-percent/m-p/130377#M18440</link>
      <description>&lt;P&gt;s i am installed hadoop using hdp on ec2 amazon cloud.&lt;/P&gt;&lt;P&gt;architecture is :&lt;/P&gt;&lt;P&gt;1 node on which ambari server is installed&lt;/P&gt;&lt;P&gt;2 master nodes&lt;/P&gt;&lt;P&gt;3 data nodes&lt;/P&gt;&lt;P&gt;So i have total 6 machines in the cluster. &lt;/P&gt;&lt;P&gt;Now when i open the pig view in ambari and run my hello world tutorial script&lt;/P&gt;&lt;PRE&gt;a = LOAD 'geolocation' using org.apache.hive.hcatalog.pig.HCatLoader();
b = filter a by event != 'normal';
c = foreach b generate driverid, event, (int) '1' as occurance;
d = group c by driverid;
e = foreach d generate group as driverid, SUM(c.occurance) as t_occ;
g = LOAD 'drivermileage' using org.apache.hive.hcatalog.pig.HCatLoader();
h = join e by driverid, g by driverid; final_data = foreach h generate $0 as driverid, $1 as events, $3 as totmiles, (float) $3/$1 as riskfactor;
store final_data into 'riskfactor' using org.apache.hive.hcatalog.pig.HCatStorer();
&lt;/PRE&gt;&lt;P&gt;Its status changes to accepted and then changes to running but always remain running for hours&lt;/P&gt;&lt;P&gt;Then i try to run this script in grunt shell . Here i create new file with the name "vi riskfactor.pig" and run it using  the command " pig -useHCatalog -f riskfactor.pig". This job is submitted but never moves from zero percent . Here i attach the screen shots of my console.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="1904-pig.png" style="width: 1366px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/22365i2D42C430F071CF30/image-size/medium?v=v2&amp;amp;px=400" role="button" title="1904-pig.png" alt="1904-pig.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="1905-pig1.png" style="width: 1366px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/22366i27A20A8002014FF1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="1905-pig1.png" alt="1905-pig1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;here i upload the screenshot of installed components in my cluster&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="1907-main-board.png" style="width: 1366px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/22367iBF21C1E21D2E04B4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="1907-main-board.png" alt="1907-main-board.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Aug 2019 09:32:05 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/pig-script-status-running-but-always-remain-at-zero-percent/m-p/130377#M18440</guid>
      <dc:creator>rupinderkaoni</dc:creator>
      <dc:date>2019-08-19T09:32:05Z</dc:date>
    </item>
    <item>
      <title>Re: pig script status running but always remain at zero percent ?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/pig-script-status-running-but-always-remain-at-zero-percent/m-p/130378#M18441</link>
      <description>&lt;P&gt;@Rupinder Singh &lt;/P&gt;&lt;P&gt;1.Restarting YARN should solve it.&lt;/P&gt;&lt;P&gt;2. This could be a java heap size problem.&lt;/P&gt;&lt;P&gt;or &lt;/P&gt;&lt;P&gt;To use both the options, use below command:&lt;/P&gt;&lt;PRE&gt;pig -useHCatalog -x tez -f script.pig&lt;/PRE&gt;&lt;P&gt;To use only Hcat:&lt;/P&gt;&lt;PRE&gt;pig -useHCatalog -f script.pig&lt;/PRE&gt;&lt;P&gt;To use only tez:&lt;/P&gt;&lt;PRE&gt;pig -x tez -f script.pig&lt;/PRE&gt;</description>
      <pubDate>Mon, 08 Feb 2016 19:21:31 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/pig-script-status-running-but-always-remain-at-zero-percent/m-p/130378#M18441</guid>
      <dc:creator>Shelton</dc:creator>
      <dc:date>2016-02-08T19:21:31Z</dc:date>
    </item>
    <item>
      <title>Re: pig script status running but always remain at zero percent ?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/pig-script-status-running-but-always-remain-at-zero-percent/m-p/130379#M18442</link>
      <description>&lt;P&gt;Thanx @Geoffrey Shelton Okot   for replying . I restarted the yarn but problem still persists. if it is java heap size problem then how to solve it . &lt;/P&gt;&lt;P&gt;thnx in advance &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Feb 2016 20:24:02 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/pig-script-status-running-but-always-remain-at-zero-percent/m-p/130379#M18442</guid>
      <dc:creator>rupinderkaoni</dc:creator>
      <dc:date>2016-02-08T20:24:02Z</dc:date>
    </item>
    <item>
      <title>Re: pig script status running but always remain at zero percent ?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/pig-script-status-running-but-always-remain-at-zero-percent/m-p/130380#M18443</link>
      <description>&lt;P&gt;Could be a lot of things: Anything from yarn queue misconfigured to job just takes a long time. &lt;/P&gt;&lt;P&gt;Have a look into the resourcemanager UI (:8088) and get the logs for the job that is being kicked off. You can see if the job is kicked off if containers have been allocated and are running and if he is reading/writing data. ( Don't use tez in the beginning I would figure out first what is wrong with the job or yarn. )&lt;/P&gt;&lt;P&gt;So &lt;/P&gt;&lt;P&gt;-&amp;gt; go to Resourcemanager UI&lt;/P&gt;&lt;P&gt;-&amp;gt; Click on the job that is kicked off ( you can see the job name in pig or just look for one running and pig ) &lt;/P&gt;&lt;P&gt;-&amp;gt; Click on Application Master&lt;/P&gt;&lt;P&gt;-&amp;gt; You should see all containers started for it. IF there is none you might have a yarn queue problem &lt;/P&gt;&lt;P&gt;-&amp;gt; If mappers are started click on Maps ( lower right ) and check if they are running and perhaps in the logs to see what is going on. &lt;/P&gt;</description>
      <pubDate>Mon, 08 Feb 2016 20:30:12 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/pig-script-status-running-but-always-remain-at-zero-percent/m-p/130380#M18443</guid>
      <dc:creator>bleonhardi</dc:creator>
      <dc:date>2016-02-08T20:30:12Z</dc:date>
    </item>
    <item>
      <title>Re: pig script status running but always remain at zero percent ?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/pig-script-status-running-but-always-remain-at-zero-percent/m-p/130381#M18444</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/2643/rupinderkaoni.html" nodeid="2643"&gt;@Rupinder Singh&lt;/A&gt; I would suggest to run service checks on all components including pig and tez. Once you validate everything works, I would open a pig grunt shell and try running each pig statement one at a time and look for errors. Additionally, you can dump after each executed command in pig to see where you fail. It can be many things and really hard to tell from what you've told us so far.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Feb 2016 04:21:42 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/pig-script-status-running-but-always-remain-at-zero-percent/m-p/130381#M18444</guid>
      <dc:creator>aervits</dc:creator>
      <dc:date>2016-02-09T04:21:42Z</dc:date>
    </item>
    <item>
      <title>Re: pig script status running but always remain at zero percent ?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/pig-script-status-running-but-always-remain-at-zero-percent/m-p/130382#M18445</link>
      <description>&lt;P&gt;sir &lt;A rel="user" href="https://community.cloudera.com/users/168/bleonhardi.html" nodeid="168" target="_blank"&gt;@Benjamin Leonhardi&lt;/A&gt; i found one more issue as i am unable to acess resource manager UI from my ambari&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="1936-resource.png" style="width: 1366px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/22361i7988A786DD702BA6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="1936-resource.png" alt="1936-resource.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;When i click on the resource manager ui of my ambari this window opens and this message is shown.&lt;/P&gt;&lt;P&gt;Actually my ambari server is installed on 1 different node.&lt;/P&gt;&lt;P&gt;i have 2 master nodes&lt;/P&gt;&lt;P&gt;1 node data +master&lt;/P&gt;&lt;P&gt;2 data nodes&lt;/P&gt;&lt;P&gt;total =6 nodes&lt;/P&gt;&lt;P&gt;master node 1 have :-&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="1937-master-node1.png" style="width: 1366px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/22362i826C00B23FB2D28E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="1937-master-node1.png" alt="1937-master-node1.png" /&gt;&lt;/span&gt;Master node has.....&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="1938-master-node2.png" style="width: 1366px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/22363i177062E8C92D5CDE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="1938-master-node2.png" alt="1938-master-node2.png" /&gt;&lt;/span&gt;third node has :......&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="1939-master-node3.png" style="width: 1366px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/22364iB751E37614A644F1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="1939-master-node3.png" alt="1939-master-node3.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Other 2 nodes has only clients installed on it.&lt;/P&gt;&lt;P&gt;i also set security group for all nodes and give acess from anywhere to all node ports&lt;/P&gt;</description>
      <pubDate>Mon, 19 Aug 2019 09:31:45 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/pig-script-status-running-but-always-remain-at-zero-percent/m-p/130382#M18445</guid>
      <dc:creator>rupinderkaoni</dc:creator>
      <dc:date>2019-08-19T09:31:45Z</dc:date>
    </item>
    <item>
      <title>Re: pig script status running but always remain at zero percent ?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/pig-script-status-running-but-always-remain-at-zero-percent/m-p/130383#M18446</link>
      <description>&lt;P&gt;thnx &lt;A rel="user" href="https://community.cloudera.com/users/393/aervits.html" nodeid="393"&gt;@Artem Ervits&lt;/A&gt; for replying here is my script ;&lt;/P&gt;&lt;P&gt;a = LOAD 'geolocation' using org.apache.hive.hcatalog.pig.HCatLoader(); &lt;/P&gt;&lt;P&gt;dump a;&lt;/P&gt;&lt;P&gt;when i execute the first statement and then execute dump a; it stops at zero percent and never move forward;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Feb 2016 14:32:16 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/pig-script-status-running-but-always-remain-at-zero-percent/m-p/130383#M18446</guid>
      <dc:creator>rupinderkaoni</dc:creator>
      <dc:date>2016-02-09T14:32:16Z</dc:date>
    </item>
    <item>
      <title>Re: pig script status running but always remain at zero percent ?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/pig-script-status-running-but-always-remain-at-zero-percent/m-p/130384#M18447</link>
      <description>&lt;A rel="user" href="https://community.cloudera.com/users/2643/rupinderkaoni.html" nodeid="2643"&gt;@Rupinder Singh&lt;/A&gt;&lt;P&gt; See this &lt;/P&gt;&lt;P&gt;&lt;A href="https://community.hortonworks.com/questions/15098/how-to-process-data-with-apache-pig-tutorial-slow.html" target="_blank"&gt;https://community.hortonworks.com/questions/15098/how-to-process-data-with-apache-pig-tutorial-slow.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;You have to check if there is any other job holding on to resources. &lt;/P&gt;</description>
      <pubDate>Tue, 09 Feb 2016 14:35:27 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/pig-script-status-running-but-always-remain-at-zero-percent/m-p/130384#M18447</guid>
      <dc:creator>nsabharwal</dc:creator>
      <dc:date>2016-02-09T14:35:27Z</dc:date>
    </item>
    <item>
      <title>Re: pig script status running but always remain at zero percent ?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/pig-script-status-running-but-always-remain-at-zero-percent/m-p/130385#M18448</link>
      <description>&lt;P&gt;sir &lt;A rel="user" href="https://community.cloudera.com/users/140/nsabharwal.html" nodeid="140" target="_blank"&gt;@Neeraj Sabharwal&lt;/A&gt; i found one more issue as i am unable to acess resource manager UI from my ambari&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="1936-resource.png" style="width: 1366px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/22357i01D6E8B59A34941D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="1936-resource.png" alt="1936-resource.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;When i click on the resource manager ui of my ambari this window opens and this message is shown.&lt;/P&gt;&lt;P&gt;Actually my ambari server is installed on 1  different node.&lt;/P&gt;&lt;P&gt;i have 2 master nodes&lt;/P&gt;&lt;P&gt;1 node data +master &lt;/P&gt;&lt;P&gt; 2 data nodes &lt;/P&gt;&lt;P&gt;total =6 nodes&lt;/P&gt;&lt;P&gt;master node 1 have :- &lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="1937-master-node1.png" style="width: 1366px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/22358i116077B8413BDFD1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="1937-master-node1.png" alt="1937-master-node1.png" /&gt;&lt;/span&gt;Master node has.....&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="1938-master-node2.png" style="width: 1366px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/22359i3425342A3A10640C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="1938-master-node2.png" alt="1938-master-node2.png" /&gt;&lt;/span&gt;third node has :......&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="1939-master-node3.png" style="width: 1366px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/22360i0FD03E82E49EF657/image-size/medium?v=v2&amp;amp;px=400" role="button" title="1939-master-node3.png" alt="1939-master-node3.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Other 2 nodes has only clients installed on it.&lt;/P&gt;&lt;P&gt;i also set security group for all nodes and give acess from anywhere to all node ports&lt;/P&gt;</description>
      <pubDate>Mon, 19 Aug 2019 09:31:20 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/pig-script-status-running-but-always-remain-at-zero-percent/m-p/130385#M18448</guid>
      <dc:creator>rupinderkaoni</dc:creator>
      <dc:date>2019-08-19T09:31:20Z</dc:date>
    </item>
    <item>
      <title>Re: pig script status running but always remain at zero percent ?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/pig-script-status-running-but-always-remain-at-zero-percent/m-p/130386#M18449</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/2643/rupinderkaoni.html" nodeid="2643"&gt;@Rupinder Singh&lt;/A&gt;  You have to setup local /etc/hosts in your machine that will resolve those hostname to public IP of servers&lt;/P&gt;</description>
      <pubDate>Tue, 09 Feb 2016 19:10:37 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/pig-script-status-running-but-always-remain-at-zero-percent/m-p/130386#M18449</guid>
      <dc:creator>nsabharwal</dc:creator>
      <dc:date>2016-02-09T19:10:37Z</dc:date>
    </item>
    <item>
      <title>Re: pig script status running but always remain at zero percent ?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/pig-script-status-running-but-always-remain-at-zero-percent/m-p/130387#M18450</link>
      <description>&lt;P&gt;thnx sir &lt;A rel="user" href="https://community.cloudera.com/users/140/nsabharwal.html" nodeid="140"&gt;@Neeraj Sabharwal&lt;/A&gt; ok you mean i have to write like this&lt;/P&gt;&lt;P&gt;172.31.1.137     ip-172-31-1-137.ap-northeast-1.compute.internal     ambariserver&lt;/P&gt;&lt;P&gt; on my windows client in "C:\Windows\System32\drivers\etc\hosts"&lt;/P&gt;</description>
      <pubDate>Tue, 09 Feb 2016 21:01:40 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/pig-script-status-running-but-always-remain-at-zero-percent/m-p/130387#M18450</guid>
      <dc:creator>rupinderkaoni</dc:creator>
      <dc:date>2016-02-09T21:01:40Z</dc:date>
    </item>
    <item>
      <title>Re: pig script status running but always remain at zero percent ?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/pig-script-status-running-but-always-remain-at-zero-percent/m-p/130388#M18451</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/2643/rupinderkaoni.html" nodeid="2643"&gt;@Rupinder Singh&lt;/A&gt; Yes!!! &lt;/P&gt;</description>
      <pubDate>Tue, 09 Feb 2016 21:03:33 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/pig-script-status-running-but-always-remain-at-zero-percent/m-p/130388#M18451</guid>
      <dc:creator>nsabharwal</dc:creator>
      <dc:date>2016-02-09T21:03:33Z</dc:date>
    </item>
    <item>
      <title>Re: pig script status running but always remain at zero percent ?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/pig-script-status-running-but-always-remain-at-zero-percent/m-p/130389#M18452</link>
      <description>&lt;P&gt;First fix RM issues then go into Hive and execute &lt;STRONG&gt;show tables&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;I want to make sure table exists. But I think your issues is not pig script but your environment, &lt;A rel="user" href="https://community.cloudera.com/users/2643/rupinderkaoni.html" nodeid="2643"&gt;@Rupinder Singh&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Feb 2016 21:15:11 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/pig-script-status-running-but-always-remain-at-zero-percent/m-p/130389#M18452</guid>
      <dc:creator>aervits</dc:creator>
      <dc:date>2016-02-09T21:15:11Z</dc:date>
    </item>
    <item>
      <title>Re: pig script status running but always remain at zero percent ?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/pig-script-status-running-but-always-remain-at-zero-percent/m-p/130390#M18453</link>
      <description>&lt;P&gt;yes &lt;A rel="user" href="https://community.cloudera.com/users/393/aervits.html" nodeid="393"&gt;@Artem Ervits&lt;/A&gt; sir i already created the required tables for script but still i got same problem.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Feb 2016 12:13:13 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/pig-script-status-running-but-always-remain-at-zero-percent/m-p/130390#M18453</guid>
      <dc:creator>rupinderkaoni</dc:creator>
      <dc:date>2016-02-10T12:13:13Z</dc:date>
    </item>
    <item>
      <title>Re: pig script status running but always remain at zero percent ?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/pig-script-status-running-but-always-remain-at-zero-percent/m-p/130391#M18454</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/2643/rupinderkaoni.html" nodeid="2643"&gt;@Rupinder Singh&lt;/A&gt; go to /var/log/hadoop/yarn and look for errors in resource manager log. You need to fix RM before anything&lt;/P&gt;</description>
      <pubDate>Wed, 10 Feb 2016 16:49:22 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/pig-script-status-running-but-always-remain-at-zero-percent/m-p/130391#M18454</guid>
      <dc:creator>aervits</dc:creator>
      <dc:date>2016-02-10T16:49:22Z</dc:date>
    </item>
    <item>
      <title>Re: pig script status running but always remain at zero percent ?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/pig-script-status-running-but-always-remain-at-zero-percent/m-p/130392#M18455</link>
      <description>&lt;P&gt;thanks &lt;A rel="user" href="https://community.cloudera.com/users/140/nsabharwal.html" nodeid="140"&gt;@Neeraj Sabharwal&lt;/A&gt;, &lt;A rel="user" href="https://community.cloudera.com/users/393/aervits.html" nodeid="393"&gt;@Artem Ervits&lt;/A&gt;, &lt;A rel="user" href="https://community.cloudera.com/users/1271/sheltong.html" nodeid="1271"&gt;@Geoffrey Shelton Okot&lt;/A&gt; and &lt;A rel="user" href="https://community.cloudera.com/users/168/bleonhardi.html" nodeid="168"&gt;@Benjamin Leonhardi&lt;/A&gt; for your valuable replies my problem is solved with the help of your answers. Thank You &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; &lt;/P&gt;</description>
      <pubDate>Thu, 11 Feb 2016 13:04:26 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/pig-script-status-running-but-always-remain-at-zero-percent/m-p/130392#M18455</guid>
      <dc:creator>rupinderkaoni</dc:creator>
      <dc:date>2016-02-11T13:04:26Z</dc:date>
    </item>
    <item>
      <title>Re: pig script status running but always remain at zero percent ?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/pig-script-status-running-but-always-remain-at-zero-percent/m-p/130393#M18456</link>
      <description>&lt;P&gt;If you are using EC2, then make sure your OS has the properly defined hostnames. You can updated it using hostnamectl or set it on the sysconfig/network files based on your OS version. &lt;/P&gt;&lt;P&gt;Then to fix your hostnames in your server/agent, follow: &lt;A href="https://ambari.apache.org/1.2.3/installing-hadoop-using-ambari/content/ambari-chap7a.html"&gt;https://ambari.apache.org/1.2.3/installing-hadoop-using-ambari/content/ambari-chap7a.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Restart Ambari Server and Agent and you should be good ! &lt;/P&gt;</description>
      <pubDate>Tue, 16 Feb 2016 00:43:32 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/pig-script-status-running-but-always-remain-at-zero-percent/m-p/130393#M18456</guid>
      <dc:creator>grajagopal</dc:creator>
      <dc:date>2016-02-16T00:43:32Z</dc:date>
    </item>
    <item>
      <title>Re: pig script status running but always remain at zero percent ?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/pig-script-status-running-but-always-remain-at-zero-percent/m-p/130394#M18457</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/2643/rupinderkaoni.html" nodeid="2643"&gt;@Rupinder Singh&lt;/A&gt; pick the best answer, I see people still trying to help you solve this :).&lt;/P&gt;</description>
      <pubDate>Tue, 16 Feb 2016 01:29:19 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/pig-script-status-running-but-always-remain-at-zero-percent/m-p/130394#M18457</guid>
      <dc:creator>aervits</dc:creator>
      <dc:date>2016-02-16T01:29:19Z</dc:date>
    </item>
    <item>
      <title>Re: pig script status running but always remain at zero percent ?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/pig-script-status-running-but-always-remain-at-zero-percent/m-p/130395#M18458</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/2643/rupinderkaoni.html" nodeid="2643"&gt;@Rupinder Singh&lt;/A&gt; please choose the best answer that helped you as we need to close out this thread.&lt;/P&gt;</description>
      <pubDate>Tue, 23 Feb 2016 10:08:43 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/pig-script-status-running-but-always-remain-at-zero-percent/m-p/130395#M18458</guid>
      <dc:creator>aervits</dc:creator>
      <dc:date>2016-02-23T10:08:43Z</dc:date>
    </item>
    <item>
      <title>Re: pig script status running but always remain at zero percent ?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/pig-script-status-running-but-always-remain-at-zero-percent/m-p/130396#M18459</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/393/aervits.html" nodeid="393"&gt;@Artem Ervits&lt;/A&gt; &lt;A rel="user" href="https://community.cloudera.com/users/33/grajagopal.html" nodeid="33"&gt;@grajagopal &lt;/A&gt;&lt;A rel="user" href="https://community.cloudera.com/users/1271/sheltong.html" nodeid="1271"&gt;@Geoffrey Shelton Okot&lt;/A&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Hello, &lt;/P&gt;&lt;P&gt;I'm facing the same issue but by following the tutorial mentioned in: &lt;/P&gt;&lt;P&gt;&lt;A href="https://hortonworks.com/tutorial/hadoop-tutorial-getting-started-with-hdp/section/4"&gt;https://hortonworks.com/tutorial/hadoop-tutorial-getting-started-with-hdp/section/4&lt;/A&gt;/.&lt;/P&gt;&lt;P&gt;Once i execute my pig script, it is stuck in running status as mentioned in &lt;A href="https://community.cloudera.com/legacyfs/online/attachments/43848-status.png"&gt;status.png&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;From RM UI, my application is also stuck in Running status as shown in &lt;A href="https://community.cloudera.com/legacyfs/online/attachments/43849-rm-application.png"&gt;rm-application.png&lt;/A&gt; and i attached the launched job in MapReduce in &lt;A href="https://community.cloudera.com/legacyfs/online/attachments/43850-mr-job.png"&gt;mr-job.png&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;From pig view log, i got &lt;A href="https://community.cloudera.com/legacyfs/online/attachments/43851-hive-log.png"&gt;hive-log.png&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;How can i resolve my issue? I'll be really grateful if you could help me.&lt;/P&gt;</description>
      <pubDate>Wed, 06 Dec 2017 21:25:58 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/pig-script-status-running-but-always-remain-at-zero-percent/m-p/130396#M18459</guid>
      <dc:creator>kabadou_rawia</dc:creator>
      <dc:date>2017-12-06T21:25:58Z</dc:date>
    </item>
  </channel>
</rss>

