<?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: Is it possible to perform an incremental Import using Nifi ? in Archives of Support Questions (Read Only)</title>
    <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Is-it-possible-to-perform-an-incremental-Import-using-Nifi/m-p/156862#M24444</link>
    <description>&lt;P&gt;You could consider a non-materialized view that does all the joins. Also there is a Jira case (&lt;A target="_blank" href="https://issues.apache.org/jira/browse/NIFI-1706"&gt;NIFI-1706&lt;/A&gt;) and &lt;A target="_blank" href="https://github.com/apache/nifi/pull/2162"&gt;GitHub Pull Request&lt;/A&gt; to allow custom queries with QueryDatabaseTable.&lt;/P&gt;</description>
    <pubDate>Sat, 09 Dec 2017 10:28:12 GMT</pubDate>
    <dc:creator>mburgess</dc:creator>
    <dc:date>2017-12-09T10:28:12Z</dc:date>
    <item>
      <title>Is it possible to perform an incremental Import using Nifi ?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Is-it-possible-to-perform-an-incremental-Import-using-Nifi/m-p/156857#M24439</link>
      <description>&lt;P&gt;If it's possible, does NIFI automatically store the "last-value"  of the checked column like in Sqoop job ?&lt;/P&gt;</description>
      <pubDate>Tue, 05 Apr 2016 19:49:31 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Is-it-possible-to-perform-an-incremental-Import-using-Nifi/m-p/156857#M24439</guid>
      <dc:creator>frioua_hamza</dc:creator>
      <dc:date>2016-04-05T19:49:31Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to perform an incremental Import using Nifi ?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Is-it-possible-to-perform-an-incremental-Import-using-Nifi/m-p/156858#M24440</link>
      <description>&lt;P&gt;As of NiFi 0.6.0, there is a processor called QueryDatabaseTable that does something like this:&lt;/P&gt;&lt;P&gt;&lt;A href="https://nifi.apache.org/docs/nifi-docs/components/org.apache.nifi.processors.standard.QueryDatabaseTable/index.html" target="_blank"&gt;https://nifi.apache.org/docs/nifi-docs/components/org.apache.nifi.processors.standard.QueryDatabaseTable/index.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;You can enter the columns for which you'd like the processor to keep track of, it will store the maximum value it has "seen" so far for each of the specified columns. When the processor runs, it will generate a SQL query to return rows whose values in those columns are greater than the observed maximum values. So if you have a unique (and increasing) ID field, for example, you can specify that in the QueryDatabaseTable processor, then the first execution will return all rows, and subsequent executions will not return any rows until one (or more) have an value for ID greater than the max.&lt;/P&gt;&lt;P&gt;This can be used to do incremental fetching like Sqoop does for only added/updated rows, using columns that contain timestamps, IDs, or other values that are increasing.&lt;/P&gt;</description>
      <pubDate>Tue, 05 Apr 2016 20:13:17 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Is-it-possible-to-perform-an-incremental-Import-using-Nifi/m-p/156858#M24440</guid>
      <dc:creator>mburgess</dc:creator>
      <dc:date>2016-04-05T20:13:17Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to perform an incremental Import using Nifi ?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Is-it-possible-to-perform-an-incremental-Import-using-Nifi/m-p/156859#M24441</link>
      <description>&lt;P&gt;Thx a lot for answering ^^.&lt;/P&gt;</description>
      <pubDate>Fri, 08 Apr 2016 17:00:36 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Is-it-possible-to-perform-an-incremental-Import-using-Nifi/m-p/156859#M24441</guid>
      <dc:creator>frioua_hamza</dc:creator>
      <dc:date>2016-04-08T17:00:36Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to perform an incremental Import using Nifi ?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Is-it-possible-to-perform-an-incremental-Import-using-Nifi/m-p/156860#M24442</link>
      <description>&lt;P&gt;&lt;A href="https://community.hortonworks.com/questions/25925/is-it-possible-to-perform-an-incremental-import-us.html#"&gt;@Matt Burgess&lt;/A&gt;
&lt;/P&gt;&lt;P&gt;I am using QueryDatabaseTable to fetch incrementally. However it generates the same data over and over again. To test I left only one record in the table and the processor generates that one record repeatedly. What I am doing wrong? I did not change any other processor configuration but only Max value columns (which has only one) and Table name properties. Thanks!&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jul 2017 00:12:21 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Is-it-possible-to-perform-an-incremental-Import-using-Nifi/m-p/156860#M24442</guid>
      <dc:creator>speedbump1452</dc:creator>
      <dc:date>2017-07-07T00:12:21Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to perform an incremental Import using Nifi ?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Is-it-possible-to-perform-an-incremental-Import-using-Nifi/m-p/156861#M24443</link>
      <description>&lt;P&gt;What if you need to run a few joins to be able to get all the data?&lt;/P&gt;&lt;P&gt;Is there then another way of doing this wish a llows a more complex query but still allows a watermark column to be used?&lt;/P&gt;</description>
      <pubDate>Fri, 08 Dec 2017 15:41:53 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Is-it-possible-to-perform-an-incremental-Import-using-Nifi/m-p/156861#M24443</guid>
      <dc:creator>max_boreback</dc:creator>
      <dc:date>2017-12-08T15:41:53Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to perform an incremental Import using Nifi ?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Is-it-possible-to-perform-an-incremental-Import-using-Nifi/m-p/156862#M24444</link>
      <description>&lt;P&gt;You could consider a non-materialized view that does all the joins. Also there is a Jira case (&lt;A target="_blank" href="https://issues.apache.org/jira/browse/NIFI-1706"&gt;NIFI-1706&lt;/A&gt;) and &lt;A target="_blank" href="https://github.com/apache/nifi/pull/2162"&gt;GitHub Pull Request&lt;/A&gt; to allow custom queries with QueryDatabaseTable.&lt;/P&gt;</description>
      <pubDate>Sat, 09 Dec 2017 10:28:12 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Is-it-possible-to-perform-an-incremental-Import-using-Nifi/m-p/156862#M24444</guid>
      <dc:creator>mburgess</dc:creator>
      <dc:date>2017-12-09T10:28:12Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to perform an incremental Import using Nifi ?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Is-it-possible-to-perform-an-incremental-Import-using-Nifi/m-p/331921#M24445</link>
      <description>&lt;P&gt;Any other option for this question?&lt;/P&gt;</description>
      <pubDate>Fri, 10 Dec 2021 07:35:36 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Is-it-possible-to-perform-an-incremental-Import-using-Nifi/m-p/331921#M24445</guid>
      <dc:creator>krishna123</dc:creator>
      <dc:date>2021-12-10T07:35:36Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to perform an incremental Import using Nifi ?</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Is-it-possible-to-perform-an-incremental-Import-using-Nifi/m-p/331930#M24447</link>
      <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/92737"&gt;@krishna123&lt;/a&gt;&amp;nbsp;as this is an older post, you would have a better chance of receiving a resolution by&lt;A href="“https://community.cloudera.com/t5/forums/postpage/board-id/Questions”" target="_blank"&gt; starting a new thread&lt;/A&gt;. This will also be an opportunity to provide details specific to your environment that could aid others in assisting you with a more accurate answer to your question. You can link this thread as a reference in your new post.&lt;/P&gt;</description>
      <pubDate>Fri, 10 Dec 2021 08:31:19 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Is-it-possible-to-perform-an-incremental-Import-using-Nifi/m-p/331930#M24447</guid>
      <dc:creator>VidyaSargur</dc:creator>
      <dc:date>2021-12-10T08:31:19Z</dc:date>
    </item>
  </channel>
</rss>

