<?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: MySQL CDC Capture - understanding logic in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/MySQL-CDC-Capture-understanding-logic/m-p/2302574#M74543</link>
    <description>&lt;P&gt;Hello &lt;SPAN class="UserName lia-user-name lia-user-rank-Ten-Stars lia-component-message-view-widget-author-username"&gt;&lt;A id="link_8" class="lia-link-navigation lia-page-link lia-user-name-link" href="https://community.qlik.com/s/profile/005390000067LRbAAM" target="_self"&gt;&lt;/A&gt;&lt;SPAN class=""&gt;,&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="UserName lia-user-name lia-user-rank-Ten-Stars lia-component-message-view-widget-author-username"&gt;&lt;SPAN class=""&gt;We are supposing that you have read the online document about:&lt;A title="TalendHelpCenter:CDC architectural overview" href="https://help.talend.com/reader/UiLqXAv52hAS8fVDfvtn8w/vBbjWPRmaiK5H~ZP1Vah_g" target="_self" rel="nofollow noopener noreferrer"&gt;TalendHelpCenter:CDC architectural overview&lt;/A&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="UserName lia-user-name lia-user-rank-Ten-Stars lia-component-message-view-widget-author-username"&gt;&lt;SPAN class=""&gt;Could you please clarify in which Talend version/edition you are?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="UserName lia-user-name lia-user-rank-Ten-Stars lia-component-message-view-widget-author-username"&gt;&lt;SPAN class=""&gt;Best regards&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="UserName lia-user-name lia-user-rank-Ten-Stars lia-component-message-view-widget-author-username"&gt;&lt;SPAN class=""&gt;Sabrina&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 13 Apr 2018 07:49:19 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2018-04-13T07:49:19Z</dc:date>
    <item>
      <title>MySQL CDC Capture - understanding logic</title>
      <link>https://community.qlik.com/t5/Talend-Studio/MySQL-CDC-Capture-understanding-logic/m-p/2302573#M74542</link>
      <description>Hi Team, 
&lt;BR /&gt;I never use Talend CDC for sync databases because prefer use other methods, but now one friend ask me to help and I meet some problem, which not expect. 
&lt;BR /&gt;So, 
&lt;BR /&gt;Connections - created, schemas created 
&lt;BR /&gt;Subscriber created, triggers - all ok 
&lt;BR /&gt;Next step create Job - capture "changes" and split for 3 flow - Insert/Update/Delete 
&lt;BR /&gt;also clean 
&lt;BR /&gt;Leave Job for sometime with regular scheduling ... and it crash by null pointer exception, let go investigate 
&lt;BR /&gt; 
&lt;BR /&gt;All Inserts - work fine 
&lt;BR /&gt;All Updates - work also fine, and it work fine - if records was Updated twice - it catch only 1 Update, Perfect!!! 
&lt;BR /&gt;Deletes - as well, until ... 
&lt;BR /&gt; 
&lt;BR /&gt;Until at the time between iteration same records was - Updated, and then Deleted 
&lt;BR /&gt;Talend not understand this situation and try to Update records with New data where all columns other than PK - NULLS and forget about NOT NULL constraints. 
&lt;BR /&gt;More - it crash not on UPDATE state, where it possible to manage, but crash on read state, because his own Metadata structure has same NOT NULL constraints. 
&lt;BR /&gt;I create testing Job for illustrate situation 
&lt;BR /&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MDhj.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/142750iC2740D937C05EFA1/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MDhj.png" alt="0683p000009MDhj.png" /&gt;&lt;/span&gt;&amp;nbsp; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MDOY.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/146634iC4B080AECD7FE1F0/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MDOY.png" alt="0683p000009MDOY.png" /&gt;&lt;/span&gt;&amp;nbsp; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MDil.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/140517iB0CAC9A7B72F82FB/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MDil.png" alt="0683p000009MDil.png" /&gt;&lt;/span&gt;&amp;nbsp;&amp;nbsp; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MDYE.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/133338i38C944C8B81271B9/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MDYE.png" alt="0683p000009MDYE.png" /&gt;&lt;/span&gt; 
&lt;BR /&gt;Situation is realistic and my question is: 
&lt;BR /&gt;- what Talend think when design trigger based CDC without saving OLD and NEW data? 
&lt;BR /&gt;- or why in this case CDC not do the same as for UPDATE - fetch only delete if records deleted? 
&lt;BR /&gt; 
&lt;BR /&gt; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MDfE.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/130292i93C6F9A65ED80DE5/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MDfE.png" alt="0683p000009MDfE.png" /&gt;&lt;/span&gt;&amp;nbsp;&amp;nbsp; 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MDYF.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/135498i0F3F6617613A9A74/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MDYF.png" alt="0683p000009MDYF.png" /&gt;&lt;/span&gt;</description>
      <pubDate>Thu, 16 Mar 2017 08:36:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/MySQL-CDC-Capture-understanding-logic/m-p/2302573#M74542</guid>
      <dc:creator>vapukov</dc:creator>
      <dc:date>2017-03-16T08:36:03Z</dc:date>
    </item>
    <item>
      <title>Re: MySQL CDC Capture - understanding logic</title>
      <link>https://community.qlik.com/t5/Talend-Studio/MySQL-CDC-Capture-understanding-logic/m-p/2302574#M74543</link>
      <description>&lt;P&gt;Hello &lt;SPAN class="UserName lia-user-name lia-user-rank-Ten-Stars lia-component-message-view-widget-author-username"&gt;&lt;A id="link_8" class="lia-link-navigation lia-page-link lia-user-name-link" href="https://community.qlik.com/s/profile/005390000067LRbAAM" target="_self"&gt;&lt;/A&gt;&lt;SPAN class=""&gt;,&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="UserName lia-user-name lia-user-rank-Ten-Stars lia-component-message-view-widget-author-username"&gt;&lt;SPAN class=""&gt;We are supposing that you have read the online document about:&lt;A title="TalendHelpCenter:CDC architectural overview" href="https://help.talend.com/reader/UiLqXAv52hAS8fVDfvtn8w/vBbjWPRmaiK5H~ZP1Vah_g" target="_self" rel="nofollow noopener noreferrer"&gt;TalendHelpCenter:CDC architectural overview&lt;/A&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="UserName lia-user-name lia-user-rank-Ten-Stars lia-component-message-view-widget-author-username"&gt;&lt;SPAN class=""&gt;Could you please clarify in which Talend version/edition you are?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="UserName lia-user-name lia-user-rank-Ten-Stars lia-component-message-view-widget-author-username"&gt;&lt;SPAN class=""&gt;Best regards&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="UserName lia-user-name lia-user-rank-Ten-Stars lia-component-message-view-widget-author-username"&gt;&lt;SPAN class=""&gt;Sabrina&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Apr 2018 07:49:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/MySQL-CDC-Capture-understanding-logic/m-p/2302574#M74543</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-04-13T07:49:19Z</dc:date>
    </item>
  </channel>
</rss>

