<?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: tHiveRow cannot resolve any fields in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/tHiveRow-cannot-resolve-any-fields/m-p/2330781#M99829</link>
    <description>Hi pedro,
&lt;BR /&gt;I am trying to extract data from Hive table and see it on console.
&lt;BR /&gt;My hive table has two columns: key String , value String.
&lt;BR /&gt;tHiveRow --&amp;gt; tParseRecordSet --&amp;gt; tLogRow
&lt;BR /&gt;In tHiveRow, In basic settings, I added column result of type object.
&lt;BR /&gt;QUERY: select key, value from my_table
&lt;BR /&gt;In Advanced Settings checked box Propagate QUERY's recordset and in use column drop down, selected column result.
&lt;BR /&gt;In tParseRecordSet did following:
&lt;BR /&gt;In Prev. Comp. Column list drop down select result
&lt;BR /&gt;Click sync columns
&lt;BR /&gt;In Attributes table, provide values for all column names as "key" , "value" , "result"
&lt;BR /&gt;Output result to tLogRow.
&lt;BR /&gt;On running, I get this Exception:
&lt;BR /&gt;Exception in thread "main" java.lang.Error: Unresolved compilation problems: 
&lt;BR /&gt; key cannot be resolved or is not a field
&lt;BR /&gt; value cannot be resolved or is not a field
&lt;BR /&gt; at evaluation.hivetestextract_woparse_0_1.HiveTestExtract_woParse.tHiveRow_1Process(HiveTestExtract_woParse.java:742)
&lt;BR /&gt; at evaluation.hivetestextract_woparse_0_1.HiveTestExtract_woParse.runJobInTOS(HiveTestExtract_woParse.java:3391)
&lt;BR /&gt; at evaluation.hivetestextract_woparse_0_1.HiveTestExtract_woParse.main(HiveTestExtract_woParse.java:3252)
&lt;BR /&gt;
&lt;BR /&gt;Can you tell, what am I missing here.
&lt;BR /&gt;Regards
&lt;BR /&gt;Manisha</description>
    <pubDate>Wed, 21 Mar 2012 05:55:22 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2012-03-21T05:55:22Z</dc:date>
    <item>
      <title>tHiveRow cannot resolve any fields</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tHiveRow-cannot-resolve-any-fields/m-p/2330779#M99827</link>
      <description>When I connect a tHiveRow object to anything else (like tLogRow for instance), the job no longer compiles with the following errors:
&lt;BR /&gt;Exception in thread "main" java.lang.Error: Unresolved compilation problems: 
&lt;BR /&gt; state cannot be resolved or is not a field
&lt;BR /&gt; name cannot be resolved or is not a field
&lt;BR /&gt;I have successfully set up a Hive Db Connection, and I can create schemas. But whenever I try to use the schema for anything, no fields can be resolved. I have tested the same table and scenario with the equivalent MySQL database and it was successful.
&lt;BR /&gt;Any help anyone can give me would be greatly appreciated.</description>
      <pubDate>Sat, 16 Nov 2024 12:22:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tHiveRow-cannot-resolve-any-fields/m-p/2330779#M99827</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T12:22:08Z</dc:date>
    </item>
    <item>
      <title>Re: tHiveRow cannot resolve any fields</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tHiveRow-cannot-resolve-any-fields/m-p/2330780#M99828</link>
      <description>Hi
&lt;BR /&gt;When you use tHiveRow or tMysqlRow, you'd better create job as follows.
&lt;BR /&gt;tHiveRow--&amp;gt;tParseRecordSet--&amp;gt;tLogRow
&lt;BR /&gt;Add a column in tHiveRow and select "Object" data type.
&lt;BR /&gt;Check Advanced settings-&amp;gt; "Propagate QUERY's recordset" and select the object column.
&lt;BR /&gt;Retrieve state and name in tParseRecordSet(Set "state" and "name" in Value).
&lt;BR /&gt;Or you can get a scenario about tParseRecordSet in TOS document.
&lt;BR /&gt;Regards,
&lt;BR /&gt;Pedro</description>
      <pubDate>Fri, 17 Feb 2012 02:48:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tHiveRow-cannot-resolve-any-fields/m-p/2330780#M99828</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-02-17T02:48:26Z</dc:date>
    </item>
    <item>
      <title>Re: tHiveRow cannot resolve any fields</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tHiveRow-cannot-resolve-any-fields/m-p/2330781#M99829</link>
      <description>Hi pedro,
&lt;BR /&gt;I am trying to extract data from Hive table and see it on console.
&lt;BR /&gt;My hive table has two columns: key String , value String.
&lt;BR /&gt;tHiveRow --&amp;gt; tParseRecordSet --&amp;gt; tLogRow
&lt;BR /&gt;In tHiveRow, In basic settings, I added column result of type object.
&lt;BR /&gt;QUERY: select key, value from my_table
&lt;BR /&gt;In Advanced Settings checked box Propagate QUERY's recordset and in use column drop down, selected column result.
&lt;BR /&gt;In tParseRecordSet did following:
&lt;BR /&gt;In Prev. Comp. Column list drop down select result
&lt;BR /&gt;Click sync columns
&lt;BR /&gt;In Attributes table, provide values for all column names as "key" , "value" , "result"
&lt;BR /&gt;Output result to tLogRow.
&lt;BR /&gt;On running, I get this Exception:
&lt;BR /&gt;Exception in thread "main" java.lang.Error: Unresolved compilation problems: 
&lt;BR /&gt; key cannot be resolved or is not a field
&lt;BR /&gt; value cannot be resolved or is not a field
&lt;BR /&gt; at evaluation.hivetestextract_woparse_0_1.HiveTestExtract_woParse.tHiveRow_1Process(HiveTestExtract_woParse.java:742)
&lt;BR /&gt; at evaluation.hivetestextract_woparse_0_1.HiveTestExtract_woParse.runJobInTOS(HiveTestExtract_woParse.java:3391)
&lt;BR /&gt; at evaluation.hivetestextract_woparse_0_1.HiveTestExtract_woParse.main(HiveTestExtract_woParse.java:3252)
&lt;BR /&gt;
&lt;BR /&gt;Can you tell, what am I missing here.
&lt;BR /&gt;Regards
&lt;BR /&gt;Manisha</description>
      <pubDate>Wed, 21 Mar 2012 05:55:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tHiveRow-cannot-resolve-any-fields/m-p/2330781#M99829</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-03-21T05:55:22Z</dc:date>
    </item>
    <item>
      <title>Re: tHiveRow cannot resolve any fields</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tHiveRow-cannot-resolve-any-fields/m-p/2330782#M99830</link>
      <description>Hi Manisha&lt;BR /&gt;Set up tParseRecordSet as the following image.&lt;BR /&gt;Regards,&lt;BR /&gt;Pedro</description>
      <pubDate>Wed, 21 Mar 2012 06:54:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tHiveRow-cannot-resolve-any-fields/m-p/2330782#M99830</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-03-21T06:54:37Z</dc:date>
    </item>
    <item>
      <title>Re: tHiveRow cannot resolve any fields</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tHiveRow-cannot-resolve-any-fields/m-p/2330783#M99831</link>
      <description>&lt;P&gt;pedro,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;please attach image&lt;/P&gt;</description>
      <pubDate>Sun, 12 Aug 2018 16:28:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tHiveRow-cannot-resolve-any-fields/m-p/2330783#M99831</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-08-12T16:28:25Z</dc:date>
    </item>
    <item>
      <title>Re: tHiveRow cannot resolve any fields</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tHiveRow-cannot-resolve-any-fields/m-p/2330784#M99832</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;Here is online document about:&lt;A title="TalendHelpCenter:Configuring the tParseRecordSet component" href="https://help.talend.com/reader/V2ZZaxdS78HmPacuPcEwkw/5NWP~h35pwDB8R4m_3p~5g" target="_self" rel="nofollow noopener noreferrer"&gt;TalendHelpCenter:Configuring the tParseRecordSet component&lt;/A&gt;. Hope it will help.&lt;/P&gt;
&lt;P&gt;Best regards&lt;/P&gt;
&lt;P&gt;Sabrina&lt;/P&gt;</description>
      <pubDate>Wed, 15 Aug 2018 09:03:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tHiveRow-cannot-resolve-any-fields/m-p/2330784#M99832</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-08-15T09:03:36Z</dc:date>
    </item>
  </channel>
</rss>

