<?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: Talend batch job misbehavior in creating logs in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Talend-batch-job-misbehavior-in-creating-logs/m-p/2258867#M40527</link>
    <description>&lt;P&gt;PFA,&lt;/P&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009Lwrm"&gt;JobScreenshot.PNG&lt;/A&gt;</description>
    <pubDate>Thu, 26 Sep 2019 08:53:12 GMT</pubDate>
    <dc:creator>ashishsinha125</dc:creator>
    <dc:date>2019-09-26T08:53:12Z</dc:date>
    <item>
      <title>Talend batch job misbehavior in creating logs</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Talend-batch-job-misbehavior-in-creating-logs/m-p/2258865#M40525</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I have created a talend batch Job which is scheduled at windows scheduler and has to run at every 15 min of gap. This talend batch job contains SQL code to create logs and store in redshift table. So it will run 4 times in an hour. In the beginning it was fine, but now sometimes it is generating logs more than 4 times in a table.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Like one log is created at 08:00:00 and next has to be at 08:15:00 and next at 08:30:00 and so on, but now it is like 08:00:00 and then 08:00:11, then moving forward with the same scenario.&lt;/P&gt;
&lt;P&gt;Sometimes it goes 5 to 6 hrs in this fashion only and after after it follows the regular criteria, and sometimes, in between for one hour only. But it is happening at regular basis. Can anyone suggest please what can be the issue.?&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 04:35:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Talend-batch-job-misbehavior-in-creating-logs/m-p/2258865#M40525</guid>
      <dc:creator>ashishsinha125</dc:creator>
      <dc:date>2024-11-16T04:35:53Z</dc:date>
    </item>
    <item>
      <title>Re: Talend batch job misbehavior in creating logs</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Talend-batch-job-misbehavior-in-creating-logs/m-p/2258866#M40526</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp; &amp;nbsp; Could you please share the job screenshot and component screen shot so that we will get more idea about how you are writing the data to this table. I suspect you are calling the job multiple times inadvertently. It could be because of the usage of On Component Ok instead of OnSubJob Ok or having multiple iterations of same code base based on some condition check.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Warm Regards,&lt;BR /&gt;Nikhil Thampi&lt;/P&gt; 
&lt;P&gt;Please appreciate our Talend community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2019 23:17:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Talend-batch-job-misbehavior-in-creating-logs/m-p/2258866#M40526</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-09-24T23:17:00Z</dc:date>
    </item>
    <item>
      <title>Re: Talend batch job misbehavior in creating logs</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Talend-batch-job-misbehavior-in-creating-logs/m-p/2258867#M40527</link>
      <description>&lt;P&gt;PFA,&lt;/P&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009Lwrm"&gt;JobScreenshot.PNG&lt;/A&gt;</description>
      <pubDate>Thu, 26 Sep 2019 08:53:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Talend-batch-job-misbehavior-in-creating-logs/m-p/2258867#M40527</guid>
      <dc:creator>ashishsinha125</dc:creator>
      <dc:date>2019-09-26T08:53:12Z</dc:date>
    </item>
    <item>
      <title>Re: Talend batch job misbehavior in creating logs</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Talend-batch-job-misbehavior-in-creating-logs/m-p/2258868#M40528</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; I believe I got the issue. You are using On Component Ok to trigger the log entry to Redshift table instead of OnSubJob Ok process. You need to do a single entry to log table once your main subjob is complete. In this case, you need to connect the first component of your main subjob to first component of logging subjob using On SubJob Ok link.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; It will make sure that the logging component is executed only once after the main subjob is complete. Could you please try and let us know the results. On a different note, please always design your job from top to bottom. You are keeping your Redshift log process above the main process. The job design should be like a story book book where the control should flow from left to right&amp;nbsp; and top to bottom. You should not create the flow in opposite order as its confusing for any other developer while doing any review.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Warm Regards,&lt;BR /&gt;Nikhil Thampi&lt;/P&gt;
&lt;P&gt;Please appreciate our Talend community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2019 14:20:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Talend-batch-job-misbehavior-in-creating-logs/m-p/2258868#M40528</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-09-26T14:20:06Z</dc:date>
    </item>
  </channel>
</rss>

