<?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>topic Re: tPigload failed with HCatLoader Load function in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/tPigload-failed-with-HCatLoader-Load-function/m-p/2328898#M98147</link>
    <description>Hi Nemolin, 
&lt;BR /&gt;Could you please report a ticket on 
&lt;A href="https://support.talend.com/otrs/customer.pl" target="_blank" rel="nofollow noopener noreferrer"&gt;Talend Support Portal&lt;/A&gt;, so that our collgagues from support team will check if it is a bug with priority, through the support cycle.
&lt;BR /&gt;Best regards
&lt;BR /&gt;Sabrina</description>
    <pubDate>Mon, 07 Jul 2014 04:07:13 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2014-07-07T04:07:13Z</dc:date>
    <item>
      <title>tPigload failed with HCatLoader Load function</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tPigload-failed-with-HCatLoader-Load-function/m-p/2328895#M98144</link>
      <description>Hi, 
  &lt;BR /&gt; tPigload fails to connect to Hive table with HCatLoader Load function, but retrieving the table via Pig console succeeds. Appreciate your help in regards to how to troubleshoot the issue. 
  &lt;BR /&gt;Version of Talend Open Studio: 5.5.0 
  &lt;BR /&gt;Hadoop: HDP 2.1 for Windows 
  &lt;BR /&gt;1. retrieve table from Pig console - succeeded 
  &lt;BR /&gt; a = LOAD 'Talend.weblog' using org.apache.hcatalog.pig.HCatLoader(); 
  &lt;BR /&gt;2. Use tPigload &amp;amp; tPigStoreResult components - failed 
  &lt;BR /&gt;Job log 
  &lt;BR /&gt;===== 
  &lt;BR /&gt;User: molin 
  &lt;BR /&gt;Name: BIGDATADEMO_test_0.1_tPigLoad_1 
  &lt;BR /&gt;Application Type: MAPREDUCE 
  &lt;BR /&gt;Application Tags: 
  &lt;BR /&gt;State: FAILED 
  &lt;BR /&gt;FinalStatus: FAILED 
  &lt;BR /&gt;Started: 10-Jun-2014 10:37:42 
  &lt;BR /&gt;Elapsed: 4sec 
  &lt;BR /&gt;Tracking URL: History Diagnostics: Application application_1402325418471_0006 failed 2 times due to AM Container for appattempt_1402325418471_0006_000002 exited with exitCode: 1 due to: Exception from container-launch: org.apache.hadoop.util.Shell$ExitC
 &lt;BR /&gt;&lt;BR /&gt;To see the whole post, download it &lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009Mcvg" target="_blank"&gt;here&lt;/A&gt;</description>
      <pubDate>Sat, 16 Nov 2024 11:37:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tPigload-failed-with-HCatLoader-Load-function/m-p/2328895#M98144</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T11:37:06Z</dc:date>
    </item>
    <item>
      <title>Re: tPigload failed with HCatLoader Load function</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tPigload-failed-with-HCatLoader-Load-function/m-p/2328896#M98145</link>
      <description>I find the error is exactly the same with as error described at 
&lt;A href="http://www.srccodes.com/p/article/46/noclassdeffounderror-org-apache-hadoop-service-compositeservice-shell-exitcodeexception-classnotfoundexception" rel="nofollow noopener noreferrer"&gt;http://www.srccodes.com/p/article/46/noclassdeffounderror-org-apache-hadoop-service-compositeservice-shell-exitcodeexception-classnotfoundexception&lt;/A&gt; 
&lt;BR /&gt;However, I added the CLASSPATH property in yarn-site.xml according to the advice of the post, the error still remains. could anyone shed me a light? 
&lt;BR /&gt;thanks, 
&lt;BR /&gt;Mo</description>
      <pubDate>Fri, 27 Jun 2014 03:44:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tPigload-failed-with-HCatLoader-Load-function/m-p/2328896#M98145</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-06-27T03:44:28Z</dc:date>
    </item>
    <item>
      <title>Re: tPigload failed with HCatLoader Load function</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tPigload-failed-with-HCatLoader-Load-function/m-p/2328897#M98146</link>
      <description>I think I could find the cause. 
&lt;BR /&gt;After install trial Enterprise studio, I am now able to trace into the job code. I found that that Talend studio ignores the classpath setting in ?yarn-site.xml? but always adds below classpath as the properties in the function tPigLoad_1Process() , which is actually wrong classpath for HDP Windows. 
&lt;BR /&gt;props_tPigLoad_1.put("yarn.application.classpath", "/etc/hadoop/conf,/usr/lib/hadoop/*,/usr/lib/hadoop/lib/*,/usr/lib/hadoop-hdfs/*,/usr/lib/hadoop-hdfs/lib/*,/usr/lib/hadoop-yarn/*,/usr/lib/hadoop-yarn/lib/*,/usr/lib/hadoop-mapreduce/*,/usr/lib/hadoop-mapreduce/lib/*"); 
&lt;BR /&gt;The advice/help I need 
&lt;BR /&gt;1. Is this a bug for tPigload component? Where can I report this issue? 
&lt;BR /&gt;2. The debug trace stops at ?pigServer_tPigLoad_1.executeBatch();? which tell me that ?Source not found? for the file PigServer.calss. where can I download the source of PigServer.calss so that I can continue trace to locate the problematic call? 
&lt;BR /&gt;Thank you, 
&lt;BR /&gt;Mo</description>
      <pubDate>Sat, 05 Jul 2014 08:56:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tPigload-failed-with-HCatLoader-Load-function/m-p/2328897#M98146</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-07-05T08:56:05Z</dc:date>
    </item>
    <item>
      <title>Re: tPigload failed with HCatLoader Load function</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tPigload-failed-with-HCatLoader-Load-function/m-p/2328898#M98147</link>
      <description>Hi Nemolin, 
&lt;BR /&gt;Could you please report a ticket on 
&lt;A href="https://support.talend.com/otrs/customer.pl" target="_blank" rel="nofollow noopener noreferrer"&gt;Talend Support Portal&lt;/A&gt;, so that our collgagues from support team will check if it is a bug with priority, through the support cycle.
&lt;BR /&gt;Best regards
&lt;BR /&gt;Sabrina</description>
      <pubDate>Mon, 07 Jul 2014 04:07:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tPigload-failed-with-HCatLoader-Load-function/m-p/2328898#M98147</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-07-07T04:07:13Z</dc:date>
    </item>
  </channel>
</rss>

