<?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: tMap with lookup table for large Excel file in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/tMap-with-lookup-table-for-large-Excel-file/m-p/2342243#M110127</link>
    <description>I'm dubious about their suggestion in general but, specifically, why read the Excel file twice?  I can't see how that's going to improve your situation since you're not joining the data.  Try making your main flow just a tFixedFlowInput with only one row and one empty column.</description>
    <pubDate>Mon, 29 Jul 2013 23:38:01 GMT</pubDate>
    <dc:creator>alevy</dc:creator>
    <dc:date>2013-07-29T23:38:01Z</dc:date>
    <item>
      <title>tMap with lookup table for large Excel file</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tMap-with-lookup-table-for-large-Excel-file/m-p/2342239#M110123</link>
      <description>Dear community,
&lt;BR /&gt;I am reading Excel files with the tFileInputExcel, tMap and tJavaRow components. If the Excel files get too large, I get an Out of Memory Error concerning the Java Heap Space. I've read in several forums and internet pages that in this case I can use a Lookup table in my tMap component, where I can set the property "Store on disk" to true and also the path, where the input data will be saved on the disk. To make this work I added a second tFileInputExcel setting the Lookup link to the tMap, which I use to map all incoming rows to the output table. The initial tFileInputExcel with the Main link to the tMap now hasn't got any mapping columns to the output table anymore. When I start the job, I still get the Java Heap Space error. Did I forget something? Or is there an example somewhere how to design the job if I only need the Lookup table for this purpose?
&lt;BR /&gt;Kind regards
&lt;BR /&gt;Sylvia</description>
      <pubDate>Fri, 26 Jul 2013 15:55:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tMap-with-lookup-table-for-large-Excel-file/m-p/2342239#M110123</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2013-07-26T15:55:37Z</dc:date>
    </item>
    <item>
      <title>Re: tMap with lookup table for large Excel file</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tMap-with-lookup-table-for-large-Excel-file/m-p/2342240#M110124</link>
      <description>Update: Now that I've created an account I add some screenshots to my problem. 
&lt;BR /&gt; 
&lt;IMG src="https://community.qlik.com/" /&gt; 
&lt;IMG src="https://community.qlik.com/" /&gt; 
&lt;IMG src="https://community.qlik.com/" /&gt;</description>
      <pubDate>Fri, 26 Jul 2013 16:02:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tMap-with-lookup-table-for-large-Excel-file/m-p/2342240#M110124</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-07-26T16:02:10Z</dc:date>
    </item>
    <item>
      <title>Re: tMap with lookup table for large Excel file</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tMap-with-lookup-table-for-large-Excel-file/m-p/2342241#M110125</link>
      <description>If your problem is reading the Excel file, this won't help you. "Store temp data on disk" is to overcome the fact that otherwise Talend tries to hold the whole lookup file in memory. But except for lookups (and some other components like tAggregateRow and tSortRow) which hold all the rows in memory, mostly rows are read and processed one at a time. 
&lt;BR /&gt;You need to increase the memory allocated to your job - see 
&lt;A href="https://community.qlik.com/s/article/ka03p0000006EZuAAM"&gt;https://community.talend.com/t5/Migration-Configuration-and/OutOfMemory-Exception/ta-p/21669?content-lang=en&lt;/A&gt;.</description>
      <pubDate>Sat, 27 Jul 2013 09:54:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tMap-with-lookup-table-for-large-Excel-file/m-p/2342241#M110125</guid>
      <dc:creator>alevy</dc:creator>
      <dc:date>2013-07-27T09:54:17Z</dc:date>
    </item>
    <item>
      <title>Re: tMap with lookup table for large Excel file</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tMap-with-lookup-table-for-large-Excel-file/m-p/2342242#M110126</link>
      <description>Thank you for your answer, alevy! Increasing the memory is in our case not an option, as the maximum heap space we can allocate on our machine is 1024MB. 
&lt;BR /&gt;For this problem I openend a ticket for the Talend Support Team and they gave me instructions to use the "Store on disk" feature with two tFileInputExcel components. But I don't know how to adjust the design of my job so the "Store on disk" is used, and they wrote that it's a job design issue and I have to post it here. But they already told me that using "Store on disk" is the correct way. 
&lt;BR /&gt;I now need instructions on how to use two tFileInputExcel components, where one of them uses the Main link and the other the Lookup link to the tMap, when reading one Excel file (see screenshots attached in my second post). 
&lt;BR /&gt;Kind regards 
&lt;BR /&gt;Sylvia</description>
      <pubDate>Mon, 29 Jul 2013 08:08:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tMap-with-lookup-table-for-large-Excel-file/m-p/2342242#M110126</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-07-29T08:08:11Z</dc:date>
    </item>
    <item>
      <title>Re: tMap with lookup table for large Excel file</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tMap-with-lookup-table-for-large-Excel-file/m-p/2342243#M110127</link>
      <description>I'm dubious about their suggestion in general but, specifically, why read the Excel file twice?  I can't see how that's going to improve your situation since you're not joining the data.  Try making your main flow just a tFixedFlowInput with only one row and one empty column.</description>
      <pubDate>Mon, 29 Jul 2013 23:38:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tMap-with-lookup-table-for-large-Excel-file/m-p/2342243#M110127</guid>
      <dc:creator>alevy</dc:creator>
      <dc:date>2013-07-29T23:38:01Z</dc:date>
    </item>
    <item>
      <title>Re: tMap with lookup table for large Excel file</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tMap-with-lookup-table-for-large-Excel-file/m-p/2342244#M110128</link>
      <description>I inserted the tFixedFlowInput and now the job obviously uses the feature "Store on disk", because in my temp folder, where I configured the data to be stored, I get for each job start a new .bin file. But the file size remains 0kb and I still get the Out of Memory error with my Excel file. Do I have to adjust something else? I tried to solve the problem by changing the "Max buffer size (nb of rows)" to a smaller number inside my tMap configuration, but this didn't change anything in the result. Do you have any idea what is missing?</description>
      <pubDate>Tue, 30 Jul 2013 10:48:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tMap-with-lookup-table-for-large-Excel-file/m-p/2342244#M110128</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-07-30T10:48:50Z</dc:date>
    </item>
    <item>
      <title>Re: tMap with lookup table for large Excel file</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tMap-with-lookup-table-for-large-Excel-file/m-p/2342245#M110129</link>
      <description>Just keep reducing the "Max buffer size (nb of rows)" until it works but you really need to be able to allocate more memory to the job.</description>
      <pubDate>Tue, 30 Jul 2013 11:11:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tMap-with-lookup-table-for-large-Excel-file/m-p/2342245#M110129</guid>
      <dc:creator>alevy</dc:creator>
      <dc:date>2013-07-30T11:11:06Z</dc:date>
    </item>
    <item>
      <title>Re: tMap with lookup table for large Excel file</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tMap-with-lookup-table-for-large-Excel-file/m-p/2342246#M110130</link>
      <description>I entered "1" as a value in "Max buffer size (nb of rows)", allocated 4096MB max Heap Space to my job and I still get the Out of Memory error, because the .bin files in my temp folder don't grow after their creation. And my Excel file is only 8.2MB in size! If I remove some sheets inside the Excel file and when it has about 6-6.5MB I can read the file without problems, although the reading is very slow. And it is also not some specific sheet which causes the problem, because I tried it with different ones... could this be a bug? I use TOS version 5.0.2...</description>
      <pubDate>Tue, 30 Jul 2013 12:48:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tMap-with-lookup-table-for-large-Excel-file/m-p/2342246#M110130</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-07-30T12:48:28Z</dc:date>
    </item>
    <item>
      <title>Re: tMap with lookup table for large Excel file</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tMap-with-lookup-table-for-large-Excel-file/m-p/2342247#M110131</link>
      <description>Doesn't sound right.  Why don't you try with a later version of the studio?</description>
      <pubDate>Tue, 30 Jul 2013 12:50:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tMap-with-lookup-table-for-large-Excel-file/m-p/2342247#M110131</guid>
      <dc:creator>alevy</dc:creator>
      <dc:date>2013-07-30T12:50:12Z</dc:date>
    </item>
    <item>
      <title>Re: tMap with lookup table for large Excel file</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tMap-with-lookup-table-for-large-Excel-file/m-p/2342248#M110132</link>
      <description>I am getting the same issue with TOS 5.3.1. Similar scenario.. tMap with 8MB delimited file! The temp files doesnt grow beyond their size during creation........</description>
      <pubDate>Fri, 04 Oct 2013 10:27:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tMap-with-lookup-table-for-large-Excel-file/m-p/2342248#M110132</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-10-04T10:27:22Z</dc:date>
    </item>
    <item>
      <title>Re: tMap with lookup table for large Excel file</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tMap-with-lookup-table-for-large-Excel-file/m-p/2342249#M110133</link>
      <description>Probably the problem is reading the large Excelfile. For the main flow you can try the component tFileExcelWorkbookOpen (with memory saving mode if you use xlsx files) and tFileExcelSheetInput (and here read only the columns you need).
&lt;BR /&gt;This way I guess you can decrease the memory usage significant.
&lt;BR /&gt;tFileExcelWorkbookOpen --OnComponentOK--&amp;gt; tFileExcelSheetInput_1 -- main flow --&amp;gt; tMap_1
&lt;BR /&gt; tFileExcelSheetInput_2 -- lookup flow --&amp;gt; tMap_1
&lt;BR /&gt;If you read for lookup the same excel file, you need only one tFileExcelWorkbookOpen.</description>
      <pubDate>Fri, 04 Oct 2013 11:17:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tMap-with-lookup-table-for-large-Excel-file/m-p/2342249#M110133</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-10-04T11:17:29Z</dc:date>
    </item>
    <item>
      <title>Re: tMap with lookup table for large Excel file</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tMap-with-lookup-table-for-large-Excel-file/m-p/2342250#M110134</link>
      <description>Hi jlolling, I could not find the tFileExcelWorkbookOpen component in TOS 5.3.1. Guess it might be available only in enterprise edition.. 
&lt;BR /&gt;Is there anything else I can do to make tMap work with files that have high number of rows..?</description>
      <pubDate>Fri, 04 Oct 2013 11:40:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tMap-with-lookup-table-for-large-Excel-file/m-p/2342250#M110134</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-10-04T11:40:37Z</dc:date>
    </item>
    <item>
      <title>Re: tMap with lookup table for large Excel file</title>
      <link>https://community.qlik.com/t5/Talend-Studio/tMap-with-lookup-table-for-large-Excel-file/m-p/2342251#M110135</link>
      <description>This is not a native talend component, but it was developed by Mister Lolling: 
&lt;A href="http://www.talendforge.org/exchange/?eid=623&amp;amp;product=tos&amp;amp;action=view&amp;amp;nav=1,1,1" rel="nofollow noopener noreferrer"&gt;http://www.talendforge.org/exchange/?eid=623&amp;amp;product=tos&amp;amp;action=view&amp;amp;nav=1,1,1&lt;/A&gt;</description>
      <pubDate>Fri, 04 Oct 2013 17:33:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/tMap-with-lookup-table-for-large-Excel-file/m-p/2342251#M110135</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-10-04T17:33:44Z</dc:date>
    </item>
  </channel>
</rss>

