<?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: OutOfmemory with big Lookup-Table in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/OutOfmemory-with-big-Lookup-Table/m-p/2205785#M6089</link>
    <description>Hi amaumont 
&lt;BR /&gt;Thank yo for the reply on my questions! I think the Talend Team is on the right track! 
&lt;BR /&gt;Actually we only have some troubles to get a grip on your sales staff. 
&lt;BR /&gt;Cheers 
&lt;BR /&gt;Benjamin</description>
    <pubDate>Fri, 20 Jun 2008 08:38:40 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2008-06-20T08:38:40Z</dc:date>
    <item>
      <title>OutOfmemory with big Lookup-Table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/OutOfmemory-with-big-Lookup-Table/m-p/2205780#M6084</link>
      <description>I work with a 6 million row table (Oracle), where i need to update only parts of a column (parts of string will be replaced). 
&lt;BR /&gt;Using the table as a lookup table input (tMap) the job quits after roughly 1 Mio read entries (the first step, which is executed) 
&lt;BR /&gt;Does anybody has a workaround for that ? 
&lt;BR /&gt;cheers, Benjamin 
&lt;BR /&gt;(working on a 2GB windows XP-machine) 
&lt;BR /&gt;Exception in thread "Thread-0" java.lang.OutOfMemoryError: Java heap space 
&lt;BR /&gt; at java.nio.CharBuffer.wrap(Unknown Source) 
&lt;BR /&gt; at sun.nio.cs.StreamEncoder.implWrite(Unknown Source) 
&lt;BR /&gt; at sun.nio.cs.StreamEncoder.write(Unknown Source) 
&lt;BR /&gt; at java.io.OutputStreamWriter.write(Unknown Source) 
&lt;BR /&gt; at java.io.BufferedWriter.flushBuffer(Unknown Source) 
&lt;BR /&gt; at java.io.BufferedWriter.flush(Unknown Source) 
&lt;BR /&gt; at java.io.PrintWriter.newLine(Unknown Source) 
&lt;BR /&gt; at java.io.PrintWriter.println(Unknown Source) 
&lt;BR /&gt; at java.io.PrintWriter.println(Unknown Source) 
&lt;BR /&gt; at routines.system.RunStat.sendMessages(RunStat.java:131) 
&lt;BR /&gt; at routines.system.RunStat.run(RunStat.java:104) 
&lt;BR /&gt; at java.lang.Thread.run(Unknown Source) 
&lt;BR /&gt;Exception in thread "main" java.lang.OutOfMemoryError: Java heap space 
&lt;BR /&gt; at java.util.Arrays.copyOfRange(Unknown Source) 
&lt;BR /&gt; at java.lang.String.&amp;lt;init&amp;gt;(Unknown Source) 
&lt;BR /&gt; at ......</description>
      <pubDate>Sat, 16 Nov 2024 14:20:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/OutOfmemory-with-big-Lookup-Table/m-p/2205780#M6084</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T14:20:18Z</dc:date>
    </item>
    <item>
      <title>Re: OutOfmemory with big Lookup-Table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/OutOfmemory-with-big-Lookup-Table/m-p/2205781#M6085</link>
      <description>Versions prior to the latest (2.4) read the lookups into memory. So, what I tried to do was to limit the number of columns retrieved from the lookup tables to just what I needed. Just used a select statement in the tXXXInput to select only the columns I was going to use for the lookup. It usually worked - but, with large tables, even then it would crash. 
&lt;BR /&gt;Version 2.4 has an option on the tMap to use a disk file to store the lookups. So, I would say that a combination of both methods should solve your problem efficiently.</description>
      <pubDate>Fri, 13 Jun 2008 17:33:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/OutOfmemory-with-big-Lookup-Table/m-p/2205781#M6085</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-06-13T17:33:00Z</dc:date>
    </item>
    <item>
      <title>Re: OutOfmemory with big Lookup-Table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/OutOfmemory-with-big-Lookup-Table/m-p/2205782#M6086</link>
      <description>Hi SMaz 
&lt;BR /&gt;Thank you for your suggestions. I am happy to hear that 2.4 has a "file" feature in tMap. My company actually has started to work with JasperETL 2.3.x - So I hope to soon be able to use 2.4. 
&lt;BR /&gt;While browsing I found a lot of members having trouble with big lookup tables. Although the ZIP-Code Lookup Examples always work well... 
&lt;BR /&gt;@Talend-Team 
&lt;BR /&gt;My suggestion: Why not having *one* select statement to txxxInput Component on *each* main data row, which requires a join. let Oracle or other db's do the caching or whatever appropriate. Why building again hash-tables and files ? 
&lt;BR /&gt;Would that be a difficult code-change to a tJoin or txxxInput (lookup) component ? 
&lt;BR /&gt;Any discussion or comments are welcom! 
&lt;BR /&gt;cheers, Benjamin</description>
      <pubDate>Mon, 16 Jun 2008 11:01:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/OutOfmemory-with-big-Lookup-Table/m-p/2205782#M6086</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-06-16T11:01:44Z</dc:date>
    </item>
    <item>
      <title>Re: OutOfmemory with big Lookup-Table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/OutOfmemory-with-big-Lookup-Table/m-p/2205783#M6087</link>
      <description>@ Talend- Team
&lt;BR /&gt;Could you please explain what is meant with: "New high performance lookup mode supporting multi-gigabyte tables and files " as stated in recent newsletter apraising 2.4?
&lt;BR /&gt;Is it the "swap to file" option in tOracleInput ? or anything else really high performing ?
&lt;BR /&gt;cheers
&lt;BR /&gt;Benjamin</description>
      <pubDate>Tue, 17 Jun 2008 15:59:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/OutOfmemory-with-big-Lookup-Table/m-p/2205783#M6087</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-06-17T15:59:17Z</dc:date>
    </item>
    <item>
      <title>Re: OutOfmemory with big Lookup-Table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/OutOfmemory-with-big-Lookup-Table/m-p/2205784#M6088</link>
      <description>&lt;BLOCKQUOTE&gt; 
 &lt;TABLE border="1"&gt; 
  &lt;TBODY&gt; 
   &lt;TR&gt; 
    &lt;TD&gt;My suggestion: Why not having *one* select statement to txxxInput Component on *each* main data row, which requires a join. let Oracle or other db's do the caching or whatever appropriate. Why building again hash-tables and files ?&lt;BR /&gt;Would that be a difficult code-change to a tJoin or txxxInput (lookup) component ?&lt;/TD&gt; 
   &lt;/TR&gt; 
  &lt;/TBODY&gt; 
 &lt;/TABLE&gt; 
&lt;/BLOCKQUOTE&gt; 
&lt;BR /&gt;We are agree with you, it can be an excellent behavior in a Database context. 
&lt;BR /&gt;We will work about this subject for the 2.5 release. 
&lt;BR /&gt;Yet, when big files are used without available database, user can't use a cache db to process its data, so the tMap's "Store on disk" option will remain useful in this case. 
&lt;BR /&gt; 
&lt;BLOCKQUOTE&gt; 
 &lt;TABLE border="1"&gt; 
  &lt;TBODY&gt; 
   &lt;TR&gt; 
    &lt;TD&gt;Could you please explain what is meant with: "New high performance lookup mode supporting multi-gigabyte tables and files " as stated in recent newsletter apraising 2.4?&lt;BR /&gt;Is it the "swap to file" option in tOracleInput ? or anything else really high performing ?&lt;/TD&gt; 
   &lt;/TR&gt; 
  &lt;/TBODY&gt; 
 &lt;/TABLE&gt; 
&lt;/BLOCKQUOTE&gt; 
&lt;BR /&gt;This information speak about the the tMap's "Store on disk" option. "high performance lookup" should be relativized, usually it will be slower than memory management, yet any benchmarks with specific parameters will be able to have same performance with and without "Store on disk" enabled. 
&lt;BR /&gt;I will post a screenshot of a benchmark set with default parameters and a big number of rows soon.</description>
      <pubDate>Thu, 19 Jun 2008 11:21:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/OutOfmemory-with-big-Lookup-Table/m-p/2205784#M6088</guid>
      <dc:creator>amaumont</dc:creator>
      <dc:date>2008-06-19T11:21:44Z</dc:date>
    </item>
    <item>
      <title>Re: OutOfmemory with big Lookup-Table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/OutOfmemory-with-big-Lookup-Table/m-p/2205785#M6089</link>
      <description>Hi amaumont 
&lt;BR /&gt;Thank yo for the reply on my questions! I think the Talend Team is on the right track! 
&lt;BR /&gt;Actually we only have some troubles to get a grip on your sales staff. 
&lt;BR /&gt;Cheers 
&lt;BR /&gt;Benjamin</description>
      <pubDate>Fri, 20 Jun 2008 08:38:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/OutOfmemory-with-big-Lookup-Table/m-p/2205785#M6089</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-06-20T08:38:40Z</dc:date>
    </item>
    <item>
      <title>Re: OutOfmemory with big Lookup-Table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/OutOfmemory-with-big-Lookup-Table/m-p/2205786#M6090</link>
      <description>Hi 
&lt;BR /&gt;I installed Release 2.4.0 and tried the new "Store to disk" option. 
&lt;BR /&gt;(btw: this option is in the mapping editor as a table option of the lookup table) 
&lt;BR /&gt;I got a compilation error when using the Lookup Table Row in a Var Expression. the "rowX could not be found" 
&lt;BR /&gt;it runs, but only a bit longer (then "memory only") if I just pass the row from lookup to the output 
&lt;BR /&gt;The Row Chunk I use is 1'000'000 which is closed to memory overflow row count. Normal Overflow occurs at 1.4Mio retrieved lookup rows. with file save option it stops at 2.4 Mio rows 
&lt;BR /&gt;btw: the temp files are not cleaned up. sums up quickly to Gig's 
&lt;BR /&gt; 
&lt;IMG src="https://community.qlik.com/" /&gt;</description>
      <pubDate>Fri, 20 Jun 2008 11:03:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/OutOfmemory-with-big-Lookup-Table/m-p/2205786#M6090</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-06-20T11:03:42Z</dc:date>
    </item>
    <item>
      <title>Re: OutOfmemory with big Lookup-Table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/OutOfmemory-with-big-Lookup-Table/m-p/2205787#M6091</link>
      <description>Continued test: 
&lt;BR /&gt;Row Chunk reduced to 500'000 worked , but later, in the middle of treating rows: again Memory problems, I guess there might be some bigger leaks or just inefficiency? 
&lt;BR /&gt; 
&lt;IMG src="https://community.qlik.com/" /&gt;</description>
      <pubDate>Fri, 20 Jun 2008 11:49:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/OutOfmemory-with-big-Lookup-Table/m-p/2205787#M6091</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-06-20T11:49:54Z</dc:date>
    </item>
    <item>
      <title>Re: OutOfmemory with big Lookup-Table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/OutOfmemory-with-big-Lookup-Table/m-p/2205788#M6092</link>
      <description>The problem come from a bug in the join algorithm, it read a (very big) bad value for a length of an array and tries to allocate it. 
&lt;BR /&gt;This problem does not depend on the amount of data but a specific sequence of data to join. A small number of data can implies this problem. 
&lt;BR /&gt;It remains us to find which it...</description>
      <pubDate>Fri, 20 Jun 2008 17:10:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/OutOfmemory-with-big-Lookup-Table/m-p/2205788#M6092</guid>
      <dc:creator>amaumont</dc:creator>
      <dc:date>2008-06-20T17:10:14Z</dc:date>
    </item>
    <item>
      <title>Re: OutOfmemory with big Lookup-Table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/OutOfmemory-with-big-Lookup-Table/m-p/2205789#M6093</link>
      <description>Hi amaumont 
&lt;BR /&gt;might it be helpfull, if I send you the test data ? it is a bunch of csv as input, as well a big oracle table, which I can send you as a csv file. Do you have any ftp for such purpose ? 
&lt;BR /&gt;Cheers, Benjamin</description>
      <pubDate>Mon, 23 Jun 2008 12:28:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/OutOfmemory-with-big-Lookup-Table/m-p/2205789#M6093</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-06-23T12:28:22Z</dc:date>
    </item>
    <item>
      <title>Re: OutOfmemory with big Lookup-Table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/OutOfmemory-with-big-Lookup-Table/m-p/2205790#M6094</link>
      <description>Hi amamount 
&lt;BR /&gt;Did you see my remark on a possible bug in 2.4: 
&lt;BR /&gt;"I got a compilation error when using the Lookup Table Row in a Var Expression. the "rowX could not be found"" 
&lt;BR /&gt;Benjamin</description>
      <pubDate>Mon, 23 Jun 2008 12:31:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/OutOfmemory-with-big-Lookup-Table/m-p/2205790#M6094</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-06-23T12:31:40Z</dc:date>
    </item>
    <item>
      <title>Re: OutOfmemory with big Lookup-Table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/OutOfmemory-with-big-Lookup-Table/m-p/2205791#M6095</link>
      <description>Indeed, I forget this remark "rowX could not be found".
&lt;BR /&gt;For now temp files are not deleted if a fatal error occurs.
&lt;BR /&gt;About data test, I think I found cause of errors, yet it may remain other cases.
&lt;BR /&gt;You can follow the 4271, it is very poor commented but I can't detail it more for now.</description>
      <pubDate>Tue, 24 Jun 2008 09:36:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/OutOfmemory-with-big-Lookup-Table/m-p/2205791#M6095</guid>
      <dc:creator>amaumont</dc:creator>
      <dc:date>2008-06-24T09:36:45Z</dc:date>
    </item>
    <item>
      <title>Re: OutOfmemory with big Lookup-Table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/OutOfmemory-with-big-Lookup-Table/m-p/2205792#M6096</link>
      <description>Could you be more precise about your remark "rowX could not be found".
&lt;BR /&gt;Can you create a Bugtrack with a simple example job ? 
&lt;BR /&gt;Maybe problem is already fixed, but i would ensure it.
&lt;BR /&gt;Tank you Benjamin.</description>
      <pubDate>Wed, 25 Jun 2008 14:22:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/OutOfmemory-with-big-Lookup-Table/m-p/2205792#M6096</guid>
      <dc:creator>amaumont</dc:creator>
      <dc:date>2008-06-25T14:22:32Z</dc:date>
    </item>
    <item>
      <title>Re: OutOfmemory with big Lookup-Table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/OutOfmemory-with-big-Lookup-Table/m-p/2205793#M6097</link>
      <description>Hi amamount 
&lt;BR /&gt;Great! I saw you could fix the memory bug, as well I appreciated the Performance Study! Thank You 
&lt;BR /&gt;let me just come back to the problem above: 
&lt;BR /&gt;I give you a few pictures to explain it. in my case row3 gives my the java error. 
&lt;BR /&gt;cheers 
&lt;BR /&gt;Benjamin 
&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; 
&lt;IMG src="https://community.qlik.com/" /&gt;</description>
      <pubDate>Thu, 03 Jul 2008 16:26:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/OutOfmemory-with-big-Lookup-Table/m-p/2205793#M6097</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-07-03T16:26:37Z</dc:date>
    </item>
    <item>
      <title>Re: OutOfmemory with big Lookup-Table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/OutOfmemory-with-big-Lookup-Table/m-p/2205794#M6098</link>
      <description>Thank you very much for all these details.&lt;BR /&gt;I reproduced your problem on 2.4.0 easily, then I imported the built job into a current dev version, but in this case no compilation error occurs.&lt;BR /&gt;You can look at the 4474 that I resolved.</description>
      <pubDate>Mon, 07 Jul 2008 10:33:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/OutOfmemory-with-big-Lookup-Table/m-p/2205794#M6098</guid>
      <dc:creator>amaumont</dc:creator>
      <dc:date>2008-07-07T10:33:11Z</dc:date>
    </item>
    <item>
      <title>Re: OutOfmemory with big Lookup-Table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/OutOfmemory-with-big-Lookup-Table/m-p/2205795#M6099</link>
      <description>Hi 
&lt;BR /&gt;TIS 2.4.1 produces: 
&lt;BR /&gt;Exception in component tMap_5_TMAP_IN 
&lt;BR /&gt;java.lang.RuntimeException: java.io.FileNotFoundException: /home/dob/WM_test/FSK-BHF/temp/WM_STAGE1_DISTRIBUTE_tMapData_row9_TEMP_792.bin (Too many open files) 
&lt;BR /&gt;with roughly 1300 files in the temp area with big Lookup Tables 10'000'000 rows and more 
&lt;BR /&gt;cheers 
&lt;BR /&gt;Benjamin</description>
      <pubDate>Fri, 29 Aug 2008 12:41:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/OutOfmemory-with-big-Lookup-Table/m-p/2205795#M6099</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-08-29T12:41:22Z</dc:date>
    </item>
    <item>
      <title>Re: OutOfmemory with big Lookup-Table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/OutOfmemory-with-big-Lookup-Table/m-p/2205796#M6100</link>
      <description>Hi 
&lt;BR /&gt;I would like to add some observation to the above: 
&lt;BR /&gt;Java heap was set to 1024 and I increased buffer size from 100'000 to 1'000'000 to get bigger files. 
&lt;BR /&gt;Now the jobs fails with "Exception in thread "Thread-0" java.lang.OutOfMemoryError: Java heap space" 
&lt;BR /&gt;Now I set the -Xmx2048M in the start.script trying to avoid the heap space error. Result is still pending...... 
&lt;BR /&gt;This forum entry is to show, that the Lookup Concept from tMap urgently needs an extension to the exsiiting concept, as I mentioned already in one of the above contributions. 
&lt;BR /&gt;For Each Row in Input stream Lookup the record in DB, fetch it and allow some operation (java-expression) to join some data. 
&lt;BR /&gt;Is there any other component-combination to allow the above scenario, without tMap ? 
&lt;BR /&gt;I am grateful for any short term workaround. 
&lt;BR /&gt;Cheers 
&lt;BR /&gt;Benjamin</description>
      <pubDate>Fri, 29 Aug 2008 13:20:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/OutOfmemory-with-big-Lookup-Table/m-p/2205796#M6100</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-08-29T13:20:27Z</dc:date>
    </item>
    <item>
      <title>Re: OutOfmemory with big Lookup-Table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/OutOfmemory-with-big-Lookup-Table/m-p/2205797#M6101</link>
      <description>Indeed, to prevent the "Too many open files" error you have to increase the "Max buffer size". 
&lt;BR /&gt;About the "Thread-0" java.lang.OutOfMemoryError: Java heap space" error, it may come from: 
&lt;BR /&gt; - any problematics cases such as the 4867 which describes a problem with the FIRST MATCH mode 
&lt;BR /&gt; - other components which need much memory, such as the aggregate or database components which may accumulate a big amount of data 
&lt;BR /&gt;The best way is to use a low "Max buffer size" which allow to use a minimal amount of memory and which generate a number of generated opened files allowed by the system. 
&lt;BR /&gt;It will be interesting for me to have more details on your "Java heap space error".</description>
      <pubDate>Fri, 29 Aug 2008 14:03:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/OutOfmemory-with-big-Lookup-Table/m-p/2205797#M6101</guid>
      <dc:creator>amaumont</dc:creator>
      <dc:date>2008-08-29T14:03:05Z</dc:date>
    </item>
    <item>
      <title>Re: OutOfmemory with big Lookup-Table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/OutOfmemory-with-big-Lookup-Table/m-p/2205798#M6102</link>
      <description>Hi 
&lt;BR /&gt;Thank you for your reply. 
&lt;BR /&gt;My job was running on a Linux machine, I was not aware, that my file system limits the openfile number to something around 1300. 
&lt;BR /&gt;This is interesting information. 
&lt;BR /&gt;btw. even 2048 MB RAM run into the heap space error. I think 1 mio records in buffer is too much for our tMap component. 
&lt;BR /&gt;btw: I ran into another strange beahviour. tDenormalizeSortedRow seems not to treat the last row. My input has 20 rows (with tSampleRow) and then some Normalisation, selecting and denormalisation leads to only 19 rows left. the last one disappeared somewhere. 
&lt;BR /&gt;Cheers 
&lt;BR /&gt;Benjamin</description>
      <pubDate>Fri, 29 Aug 2008 14:27:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/OutOfmemory-with-big-Lookup-Table/m-p/2205798#M6102</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2008-08-29T14:27:51Z</dc:date>
    </item>
    <item>
      <title>Re: OutOfmemory with big Lookup-Table</title>
      <link>https://community.qlik.com/t5/Talend-Studio/OutOfmemory-with-big-Lookup-Table/m-p/2205799#M6103</link>
      <description>I would like see the complete error message to see if this an algorithm bug or an other problem.&lt;BR /&gt;It could be useful to give a screenshot of your job if possible.&lt;BR /&gt;About the problem on the tDenormalizeSortedRow, please create a new topic.&lt;BR /&gt;Thank you Benjamin.</description>
      <pubDate>Fri, 29 Aug 2008 14:37:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/OutOfmemory-with-big-Lookup-Table/m-p/2205799#M6103</guid>
      <dc:creator>amaumont</dc:creator>
      <dc:date>2008-08-29T14:37:48Z</dc:date>
    </item>
  </channel>
</rss>

