<?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: Aggregation on large Table Data in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Aggregation-on-large-Table-Data/m-p/2294748#M67592</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;A combination of tMySQLInput (with order by criteria) and tAggregateSortedRow components together. Make sure you correctly set the "Input Rows Count" which means you'll probably need to read the data into an intermediate file.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;tCreateTemporaryFile&lt;/P&gt; 
&lt;P&gt;|&lt;/P&gt; 
&lt;P&gt;tMySQLINput -&amp;gt; tFileOutputDelimited&lt;/P&gt; 
&lt;P&gt;|&lt;/P&gt; 
&lt;P&gt;tFileInputDelimted -&amp;gt; tAggregateSortedRow -&amp;gt; (whatever you want to do with the aggregated data)&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Thanks&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;David&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 04 Dec 2018 16:54:31 GMT</pubDate>
    <dc:creator>David_Beaty</dc:creator>
    <dc:date>2018-12-04T16:54:31Z</dc:date>
    <item>
      <title>Aggregation on large Table Data</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Aggregation-on-large-Table-Data/m-p/2294746#M67590</link>
      <description>I have a table containing 33 million records in MySQL database. I need to aggregate the rows. Could you help to know the&amp;nbsp;best/efficient method to solve this with performance?
&lt;BR /&gt;1. Extract all the 33 million records into Talend, &amp;nbsp;sort and aggregate in the Talend tool
&lt;BR /&gt;2. TMySQLInput with following extract query 
&lt;BR /&gt;&amp;nbsp;&amp;nbsp; SELECT A,B,C, SUM(D),SUM(E)
&lt;BR /&gt;&amp;nbsp;&amp;nbsp; from table1
&lt;BR /&gt;&amp;nbsp;&amp;nbsp; group by A,B,C
&lt;BR /&gt;3. Any other better way other than listed above
&lt;BR /&gt;Thanks,
&lt;BR /&gt;Srini</description>
      <pubDate>Sat, 16 Nov 2024 10:39:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Aggregation-on-large-Table-Data/m-p/2294746#M67590</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T10:39:52Z</dc:date>
    </item>
    <item>
      <title>Re: Aggregation on large Table Data</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Aggregation-on-large-Table-Data/m-p/2294747#M67591</link>
      <description>Hi,
&lt;BR /&gt;Here is a component&amp;nbsp;
&lt;A href="https://help.talend.com/search/all?query=tAggregateRow&amp;amp;content-lang=en" target="_blank" rel="nofollow noopener noreferrer"&gt;TalendHelpCenter:tAggregateRow&lt;/A&gt;&amp;nbsp;which&amp;nbsp;
&lt;FONT size="2"&gt;&lt;FONT face="noto, Helvetica, Arial, sans-serif"&gt;receives a flow and aggregates it based on one or more columns. For each output line, are provided the aggregation key and the relevant result of set operations.&lt;/FONT&gt;&lt;/FONT&gt;
&lt;BR /&gt;
&lt;FONT size="2"&gt;&lt;FONT face="noto, Helvetica, Arial, sans-serif"&gt;Please take a look at the related scenario in this component reference.&lt;/FONT&gt;&lt;/FONT&gt;
&lt;BR /&gt;
&lt;FONT size="2"&gt;&lt;FONT face="noto, Helvetica, Arial, sans-serif"&gt;Best regards&lt;/FONT&gt;&lt;/FONT&gt;
&lt;BR /&gt;
&lt;FONT size="2"&gt;&lt;FONT face="noto, Helvetica, Arial, sans-serif"&gt;Sabrina&lt;/FONT&gt;&lt;/FONT&gt;</description>
      <pubDate>Wed, 04 May 2016 09:09:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Aggregation-on-large-Table-Data/m-p/2294747#M67591</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-05-04T09:09:00Z</dc:date>
    </item>
    <item>
      <title>Re: Aggregation on large Table Data</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Aggregation-on-large-Table-Data/m-p/2294748#M67592</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;A combination of tMySQLInput (with order by criteria) and tAggregateSortedRow components together. Make sure you correctly set the "Input Rows Count" which means you'll probably need to read the data into an intermediate file.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;tCreateTemporaryFile&lt;/P&gt; 
&lt;P&gt;|&lt;/P&gt; 
&lt;P&gt;tMySQLINput -&amp;gt; tFileOutputDelimited&lt;/P&gt; 
&lt;P&gt;|&lt;/P&gt; 
&lt;P&gt;tFileInputDelimted -&amp;gt; tAggregateSortedRow -&amp;gt; (whatever you want to do with the aggregated data)&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Thanks&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;David&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Dec 2018 16:54:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Aggregation-on-large-Table-Data/m-p/2294748#M67592</guid>
      <dc:creator>David_Beaty</dc:creator>
      <dc:date>2018-12-04T16:54:31Z</dc:date>
    </item>
  </channel>
</rss>

