<?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: HELP! Very slow in generating the data into a shared folder location in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/HELP-Very-slow-in-generating-the-data-into-a-shared-folder/m-p/2290739#M63991</link>
    <description>&lt;P&gt;could you go to the code view, click on the red square and send a screenshot of the code ?&lt;/P&gt;</description>
    <pubDate>Tue, 15 Mar 2022 09:01:35 GMT</pubDate>
    <dc:creator>gjeremy1617088143</dc:creator>
    <dc:date>2022-03-15T09:01:35Z</dc:date>
    <item>
      <title>HELP! Very slow in generating the data into a shared folder location</title>
      <link>https://community.qlik.com/t5/Talend-Studio/HELP-Very-slow-in-generating-the-data-into-a-shared-folder/m-p/2290730#M63982</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope everyone is all well.&lt;/P&gt;&lt;P&gt;I am newbie in Talend application. I created the job below to extract 60-100k or more records which I would like to directly save in a network shared folder location.  However, it takes a long time to generate (half an hour) and finish the job that is why I always "kill" the running session. If I ran it pointing to my home folder or even running in the Talend Cloud, it just took about 5 minutes or less.  Is there any other way or I additional component that I need to include to get my Talend job optimized and run faster? Any help is greatly appreciated. Thank you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000PJxOKAA1.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/156511i8A47C5917949ADDB/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000PJxOKAA1.jpg" alt="0695b00000PJxOKAA1.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Nov 2024 23:08:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/HELP-Very-slow-in-generating-the-data-into-a-shared-folder/m-p/2290730#M63982</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-15T23:08:16Z</dc:date>
    </item>
    <item>
      <title>Re: HELP! Very slow in generating the data into a shared folder location</title>
      <link>https://community.qlik.com/t5/Talend-Studio/HELP-Very-slow-in-generating-the-data-into-a-shared-folder/m-p/2290731#M63983</link>
      <description>&lt;P&gt;Hi, maybe you could send the result in an Output Stream, tFileOutputDelimited can do this, and after that you transform your OutputStream into a FileOutputStream and write it on you shared folder(necessite to write a bit a of java).&lt;/P&gt;&lt;P&gt;So the only action on your shared folder will be to just write once the file.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Mar 2022 08:11:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/HELP-Very-slow-in-generating-the-data-into-a-shared-folder/m-p/2290731#M63983</guid>
      <dc:creator>gjeremy1617088143</dc:creator>
      <dc:date>2022-03-10T08:11:40Z</dc:date>
    </item>
    <item>
      <title>Re: HELP! Very slow in generating the data into a shared folder location</title>
      <link>https://community.qlik.com/t5/Talend-Studio/HELP-Very-slow-in-generating-the-data-into-a-shared-folder/m-p/2290732#M63984</link>
      <description>&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;I would suggest the following ways to optimize the performance.&lt;/P&gt;&lt;P&gt;- Check the manual query box, write custom query and add condition in the query to filter the records on tSalesforceInput.   &lt;/P&gt;&lt;P&gt;- Allocate more memory to job execution.&lt;/P&gt;&lt;P&gt;- Store the records into local file, and finally, copy the file to shared folder using tFileCopy.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Shong&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;</description>
      <pubDate>Thu, 10 Mar 2022 08:32:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/HELP-Very-slow-in-generating-the-data-into-a-shared-folder/m-p/2290732#M63984</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-03-10T08:32:02Z</dc:date>
    </item>
    <item>
      <title>Re: HELP! Very slow in generating the data into a shared folder location</title>
      <link>https://community.qlik.com/t5/Talend-Studio/HELP-Very-slow-in-generating-the-data-into-a-shared-folder/m-p/2290733#M63985</link>
      <description>&lt;P&gt;eg in a tJava at the begining of the job :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;in basic parameter :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ByteArrayOutputStream stream = new ByteArrayOutputStream();&lt;/P&gt;&lt;P&gt;globalMap.put("outStream",stream);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;in advance parameter :&lt;/P&gt;&lt;P&gt;import java.io.ByteArrayOutputStream;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;in the tFileOutputDelimited check the use stream output checkbox&lt;/P&gt;&lt;P&gt;and in the stream name field :&lt;/P&gt;&lt;P&gt;(ByteArrayOutputStream)globalMap.get("outStream")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;then in tJava at the end of the job :&lt;/P&gt;&lt;P&gt;in basic parameters :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;FileOutputStream fos = new FileOutputStream("your file path");&lt;/P&gt;&lt;P&gt;fos.write(((ByteArrayOutputStream)globalMap.get("outStream")).toByArray());&lt;/P&gt;&lt;P&gt;fos.close;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;in Advance Parameters :&lt;/P&gt;&lt;P&gt;import java.io.FileOutputStream;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Mar 2022 08:34:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/HELP-Very-slow-in-generating-the-data-into-a-shared-folder/m-p/2290733#M63985</guid>
      <dc:creator>gjeremy1617088143</dc:creator>
      <dc:date>2022-03-10T08:34:21Z</dc:date>
    </item>
    <item>
      <title>Re: HELP! Very slow in generating the data into a shared folder location</title>
      <link>https://community.qlik.com/t5/Talend-Studio/HELP-Very-slow-in-generating-the-data-into-a-shared-folder/m-p/2290734#M63986</link>
      <description>&lt;P&gt;Hi Shong,&lt;/P&gt;&lt;P&gt;Thank you. I followed your suggestion and tried to create first a copy to the local file and copy it to shared folder afterwards. However, I got a new error "Connection Reset". I've already adjusted the Timeouts from the Talend Studio but still the same.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000PKMocAAH.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/134684i8C52950233164BB9/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000PKMocAAH.png" alt="0695b00000PKMocAAH.png" /&gt;&lt;/span&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000PKMorAAH.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/139295i328834C3E13E472B/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000PKMorAAH.png" alt="0695b00000PKMorAAH.png" /&gt;&lt;/span&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Mar 2022 05:41:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/HELP-Very-slow-in-generating-the-data-into-a-shared-folder/m-p/2290734#M63986</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-03-14T05:41:22Z</dc:date>
    </item>
    <item>
      <title>Re: HELP! Very slow in generating the data into a shared folder location</title>
      <link>https://community.qlik.com/t5/Talend-Studio/HELP-Very-slow-in-generating-the-data-into-a-shared-folder/m-p/2290735#M63987</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you much for your recommendation. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I tried adding the tJava (start and end of the job) and its codes, but I'm getting the error below.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000PKb3HAAT.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/131795i3093AE5E8F65A67C/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000PKb3HAAT.png" alt="0695b00000PKb3HAAT.png" /&gt;&lt;/span&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Mar 2022 08:11:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/HELP-Very-slow-in-generating-the-data-into-a-shared-folder/m-p/2290735#M63987</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-03-15T08:11:00Z</dc:date>
    </item>
    <item>
      <title>Re: HELP! Very slow in generating the data into a shared folder location</title>
      <link>https://community.qlik.com/t5/Talend-Studio/HELP-Very-slow-in-generating-the-data-into-a-shared-folder/m-p/2290736#M63988</link>
      <description>&lt;P&gt;@Not defined Not defined​&amp;nbsp; any changes you have made on tSalesforceInput?  use manual query? Have you got this error before?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Mar 2022 08:30:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/HELP-Very-slow-in-generating-the-data-into-a-shared-folder/m-p/2290736#M63988</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-03-15T08:30:53Z</dc:date>
    </item>
    <item>
      <title>Re: HELP! Very slow in generating the data into a shared folder location</title>
      <link>https://community.qlik.com/t5/Talend-Studio/HELP-Very-slow-in-generating-the-data-into-a-shared-folder/m-p/2290737#M63989</link>
      <description>&lt;P&gt; I see you are using runIf trigger, make sure you have set the condition expression (boolean type).&lt;/P&gt;</description>
      <pubDate>Tue, 15 Mar 2022 08:32:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/HELP-Very-slow-in-generating-the-data-into-a-shared-folder/m-p/2290737#M63989</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-03-15T08:32:23Z</dc:date>
    </item>
    <item>
      <title>Re: HELP! Very slow in generating the data into a shared folder location</title>
      <link>https://community.qlik.com/t5/Talend-Studio/HELP-Very-slow-in-generating-the-data-into-a-shared-folder/m-p/2290738#M63990</link>
      <description>&lt;P&gt;Yes, I've used the manual query and tried as well the Built-In schema but still the same error. The error occurs if I added the tFileCopy component which is copying the file from local to the remote server shared destination.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Mar 2022 08:45:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/HELP-Very-slow-in-generating-the-data-into-a-shared-folder/m-p/2290738#M63990</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-03-15T08:45:28Z</dc:date>
    </item>
    <item>
      <title>Re: HELP! Very slow in generating the data into a shared folder location</title>
      <link>https://community.qlik.com/t5/Talend-Studio/HELP-Very-slow-in-generating-the-data-into-a-shared-folder/m-p/2290739#M63991</link>
      <description>&lt;P&gt;could you go to the code view, click on the red square and send a screenshot of the code ?&lt;/P&gt;</description>
      <pubDate>Tue, 15 Mar 2022 09:01:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/HELP-Very-slow-in-generating-the-data-into-a-shared-folder/m-p/2290739#M63991</guid>
      <dc:creator>gjeremy1617088143</dc:creator>
      <dc:date>2022-03-15T09:01:35Z</dc:date>
    </item>
    <item>
      <title>Re: HELP! Very slow in generating the data into a shared folder location</title>
      <link>https://community.qlik.com/t5/Talend-Studio/HELP-Very-slow-in-generating-the-data-into-a-shared-folder/m-p/2290740#M63992</link>
      <description>&lt;P&gt;It sounds weird,  the error does not occur if you don't use a tFileCopy in the job? but the error thrown on tSalesforceInput.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Mar 2022 09:26:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/HELP-Very-slow-in-generating-the-data-into-a-shared-folder/m-p/2290740#M63992</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-03-15T09:26:37Z</dc:date>
    </item>
    <item>
      <title>Re: HELP! Very slow in generating the data into a shared folder location</title>
      <link>https://community.qlik.com/t5/Talend-Studio/HELP-Very-slow-in-generating-the-data-into-a-shared-folder/m-p/2290741#M63993</link>
      <description>&lt;P&gt;Correct. It is weird. It throws me the said error if I enabled the tFilecopy component. &lt;/P&gt;&lt;P&gt;Here is the error:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000PLQynAAH.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/130773i8AFBAB31ED2DC71B/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000PLQynAAH.png" alt="0695b00000PLQynAAH.png" /&gt;&lt;/span&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm thinking if there is any other design that I could apply like archiving first before transferring or copying the file onto the shared folder. &lt;/P&gt;</description>
      <pubDate>Mon, 21 Mar 2022 05:43:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/HELP-Very-slow-in-generating-the-data-into-a-shared-folder/m-p/2290741#M63993</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-03-21T05:43:16Z</dc:date>
    </item>
    <item>
      <title>Re: HELP! Very slow in generating the data into a shared folder location</title>
      <link>https://community.qlik.com/t5/Talend-Studio/HELP-Very-slow-in-generating-the-data-into-a-shared-folder/m-p/2290742#M63994</link>
      <description>&lt;P&gt;Hi @Shicong Hong​&amp;nbsp;,&lt;/P&gt;&lt;P&gt;It is now working and running without having any errors so far. However, it's been almost 5 hours and it's still running. Though, I can see that it is now generating the file and the size is getting bigger. Is there any other option that I can apply in the job to speed up the process?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000PLsinAAD.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/156964i586C603D447DBBAD/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000PLsinAAD.png" alt="0695b00000PLsinAAD.png" /&gt;&lt;/span&gt;Thank you much in advance.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Mar 2022 05:47:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/HELP-Very-slow-in-generating-the-data-into-a-shared-folder/m-p/2290742#M63994</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-03-23T05:47:05Z</dc:date>
    </item>
    <item>
      <title>Re: HELP! Very slow in generating the data into a shared folder location</title>
      <link>https://community.qlik.com/t5/Talend-Studio/HELP-Very-slow-in-generating-the-data-into-a-shared-folder/m-p/2290743#M63995</link>
      <description>&lt;P&gt;Hi @guenneguez jeremy​&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hi @Shicong Hong​&amp;nbsp;,&lt;/P&gt;&lt;P&gt;It is now working and running without having any errors so far. However, it's been almost 5 hours and it's still running. Though, I can see that it is now generating the csv file and the size is getting bigger. Is there any other option that I can apply in the job to speed up the process?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000PLsinAAD.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/156964i586C603D447DBBAD/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000PLsinAAD.png" alt="0695b00000PLsinAAD.png" /&gt;&lt;/span&gt;Thank you much in advance.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Mar 2022 05:48:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/HELP-Very-slow-in-generating-the-data-into-a-shared-folder/m-p/2290743#M63995</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-03-23T05:48:13Z</dc:date>
    </item>
    <item>
      <title>Re: HELP! Very slow in generating the data into a shared folder location</title>
      <link>https://community.qlik.com/t5/Talend-Studio/HELP-Very-slow-in-generating-the-data-into-a-shared-folder/m-p/2290744#M63996</link>
      <description>&lt;P&gt;@Not defined Not defined​, try the following points to optimize the job:&lt;/P&gt;&lt;P&gt;1 Allocate more memory to the job execution.&lt;/P&gt;&lt;P&gt;2 Filter the data on tMap, don't need to use a tFilterRow. &lt;/P&gt;&lt;P&gt;3 Copy the file in next subjob after it is generated, so change the job like:&lt;/P&gt;&lt;P&gt;tSalesforceInput--main--tConvertType--main--tMap--tFileOutputDelimited&lt;/P&gt;&lt;P&gt;|onsubjobok&lt;/P&gt;&lt;P&gt;tFileCopy&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope it helps you!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Shong&lt;/P&gt;</description>
      <pubDate>Wed, 23 Mar 2022 07:19:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/HELP-Very-slow-in-generating-the-data-into-a-shared-folder/m-p/2290744#M63996</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-03-23T07:19:08Z</dc:date>
    </item>
    <item>
      <title>Re: HELP! Very slow in generating the data into a shared folder location</title>
      <link>https://community.qlik.com/t5/Talend-Studio/HELP-Very-slow-in-generating-the-data-into-a-shared-folder/m-p/2290745#M63997</link>
      <description>&lt;P&gt;Thank you, @Shicong Hong​&amp;nbsp;.&lt;/P&gt;&lt;P&gt;I applied your recommendations.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Increased the memory allocation&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000PMhFhAAL.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/149983i7CE40B595921BF5B/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000PMhFhAAL.png" alt="0695b00000PMhFhAAL.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Removed the tFilterRow&lt;/LI&gt;&lt;LI&gt;And on subjobok&lt;/LI&gt;&lt;LI&gt;I set the Query Mode to "Query" which took more than 7hrs to run. However, If I changed it back to "Bulk" or "BulkV2" the error "connection reset" will appear. Do we have any other way to fix the connection reset to at least trim down the run time?&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0695b00000PMhEjAAL.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/155745i4C95A6663E5FAB17/image-size/large?v=v2&amp;amp;px=999" role="button" title="0695b00000PMhEjAAL.png" alt="0695b00000PMhEjAAL.png" /&gt;&lt;/span&gt;Thank you much.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Mar 2022 09:49:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/HELP-Very-slow-in-generating-the-data-into-a-shared-folder/m-p/2290745#M63997</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-03-28T09:49:16Z</dc:date>
    </item>
  </channel>
</rss>

