<?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>question Re: How to preventing duplicates  when ingesting into MYSQL using Nifi? in Archives of Support Questions (Read Only)</title>
    <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-preventing-duplicates-when-ingesting-into-MYSQL-using/m-p/164313#M41439</link>
    <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/363/bbende.html" nodeid="363" target="_blank"&gt;@Bryan Bende&lt;/A&gt; thanks a lot for the help works perfect. I attached a snippet of the updated workflow should anyone experience such an issue in the future.Thanks again.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="7856-workingnifiwrkflow.jpg" style="width: 1116px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/20474i26ACA08A6C06763E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="7856-workingnifiwrkflow.jpg" alt="7856-workingnifiwrkflow.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Sun, 18 Aug 2019 11:29:40 GMT</pubDate>
    <dc:creator>kdossou</dc:creator>
    <dc:date>2019-08-18T11:29:40Z</dc:date>
    <item>
      <title>How to preventing duplicates  when ingesting into MYSQL using Nifi?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-preventing-duplicates-when-ingesting-into-MYSQL-using/m-p/164311#M41437</link>
      <description>&lt;P&gt;     I have a dataflow that ingest file from sftp into mysql and  would like to know how to prevent an enormous amount of duplicates being ingested by nifi into mysql. Attached details below. Thanks&lt;/P&gt;&lt;P&gt;(1)Data flow&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="7853-updatednifiwrkfl.jpg" style="width: 1366px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/20475iFE1A301802C66155/image-size/medium?v=v2&amp;amp;px=400" role="button" title="7853-updatednifiwrkfl.jpg" alt="7853-updatednifiwrkfl.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;(2) count after nifi ingest into mysql&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="7854-countfromflowfile.jpg" style="width: 302px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/20476i11C076F89A70EBEE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="7854-countfromflowfile.jpg" alt="7854-countfromflowfile.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;(3)Original Data on SFTP&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="7855-originaldata.jpg" style="width: 295px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/20477iE01A1626155FDBFB/image-size/medium?v=v2&amp;amp;px=400" role="button" title="7855-originaldata.jpg" alt="7855-originaldata.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 18 Aug 2019 11:29:59 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-preventing-duplicates-when-ingesting-into-MYSQL-using/m-p/164311#M41437</guid>
      <dc:creator>kdossou</dc:creator>
      <dc:date>2019-08-18T11:29:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to preventing duplicates  when ingesting into MYSQL using Nifi?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-preventing-duplicates-when-ingesting-into-MYSQL-using/m-p/164312#M41438</link>
      <description>&lt;P&gt;In many parts of your flow you have multiple relationships routed to the next processor when you probably want only one, some examples...&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Between SplitText and ExtractText you have original and splits connected, but you probably only want splits here.&lt;/LI&gt;&lt;LI&gt;Between ExtractText and ReplaceText you have matched and unmatched, but you probably only want matched.&lt;/LI&gt;&lt;LI&gt;Between ReplaceText and PutSQL you have success and failure, but you probably only want success.&lt;/LI&gt;&lt;LI&gt;On PutSQL you have route failure, success, and retry back to itself, and you probably only want retry (you definitely don't want success routed back to itself).&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;You would most likely auto-terminate these other relationships (first tab when configured a processor).&lt;/P&gt;</description>
      <pubDate>Thu, 22 Sep 2016 04:07:58 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-preventing-duplicates-when-ingesting-into-MYSQL-using/m-p/164312#M41438</guid>
      <dc:creator>bbende</dc:creator>
      <dc:date>2016-09-22T04:07:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to preventing duplicates  when ingesting into MYSQL using Nifi?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-preventing-duplicates-when-ingesting-into-MYSQL-using/m-p/164313#M41439</link>
      <description>&lt;P&gt;&lt;A rel="user" href="https://community.cloudera.com/users/363/bbende.html" nodeid="363" target="_blank"&gt;@Bryan Bende&lt;/A&gt; thanks a lot for the help works perfect. I attached a snippet of the updated workflow should anyone experience such an issue in the future.Thanks again.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="7856-workingnifiwrkflow.jpg" style="width: 1116px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/20474i26ACA08A6C06763E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="7856-workingnifiwrkflow.jpg" alt="7856-workingnifiwrkflow.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 18 Aug 2019 11:29:40 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/How-to-preventing-duplicates-when-ingesting-into-MYSQL-using/m-p/164313#M41439</guid>
      <dc:creator>kdossou</dc:creator>
      <dc:date>2019-08-18T11:29:40Z</dc:date>
    </item>
  </channel>
</rss>

