<?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 Incremental updates in Delta Live Tables in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/incremental-updates-in-delta-live-tables/m-p/34316#M25085</link>
    <description>&lt;P&gt;What happens if we change the logic for the delta live tables and we do an incremental update. Does the table get reset (refresh) automatically or would it only apply the logic to new incoming data? would we have to trigger a reset in this case?&lt;/P&gt;</description>
    <pubDate>Sun, 28 Nov 2021 19:31:48 GMT</pubDate>
    <dc:creator>morganmazouchi</dc:creator>
    <dc:date>2021-11-28T19:31:48Z</dc:date>
    <item>
      <title>Incremental updates in Delta Live Tables</title>
      <link>https://community.databricks.com/t5/data-engineering/incremental-updates-in-delta-live-tables/m-p/34316#M25085</link>
      <description>&lt;P&gt;What happens if we change the logic for the delta live tables and we do an incremental update. Does the table get reset (refresh) automatically or would it only apply the logic to new incoming data? would we have to trigger a reset in this case?&lt;/P&gt;</description>
      <pubDate>Sun, 28 Nov 2021 19:31:48 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/incremental-updates-in-delta-live-tables/m-p/34316#M25085</guid>
      <dc:creator>morganmazouchi</dc:creator>
      <dc:date>2021-11-28T19:31:48Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental updates in Delta Live Tables</title>
      <link>https://community.databricks.com/t5/data-engineering/incremental-updates-in-delta-live-tables/m-p/34317#M25086</link>
      <description>&lt;P&gt;I doubt the table gets reset, as that would mean you could never change anything in a current setup.&lt;/P&gt;&lt;P&gt;Delta live was created to make life easier, so my guess is that it is new data only.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Nov 2021 07:34:25 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/incremental-updates-in-delta-live-tables/m-p/34317#M25086</guid>
      <dc:creator>-werners-</dc:creator>
      <dc:date>2021-11-29T07:34:25Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental updates in Delta Live Tables</title>
      <link>https://community.databricks.com/t5/data-engineering/incremental-updates-in-delta-live-tables/m-p/34318#M25087</link>
      <description>&lt;P&gt;Delta is transactional so nothing will be reset, it can be deleted but you can always back to past using time capsule travel &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;One thing to which maybe you are referring is partitioning, when you overwrite data it will overwrite all partitions but you can use dynamic overwrite so you will only overwrite partitions which have new data:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;spark.conf.set("spark.sql.sources.partitionOverwriteMode", "dynamic")&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Nov 2021 10:37:17 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/incremental-updates-in-delta-live-tables/m-p/34318#M25087</guid>
      <dc:creator>Hubert-Dudek</dc:creator>
      <dc:date>2021-11-29T10:37:17Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental updates in Delta Live Tables</title>
      <link>https://community.databricks.com/t5/data-engineering/incremental-updates-in-delta-live-tables/m-p/34319#M25088</link>
      <description>&lt;P&gt;Here is my finding on when to refresh (reset) the table: &lt;/P&gt;&lt;P&gt;If it is a complete table all the changes would be apply automatically.&amp;nbsp;&lt;/P&gt;&lt;P&gt;If the table is incremental table, you need to do a manually reset (full refresh).&lt;/P&gt;</description>
      <pubDate>Mon, 29 Nov 2021 15:47:26 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/incremental-updates-in-delta-live-tables/m-p/34319#M25088</guid>
      <dc:creator>morganmazouchi</dc:creator>
      <dc:date>2021-11-29T15:47:26Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental updates in Delta Live Tables</title>
      <link>https://community.databricks.com/t5/data-engineering/incremental-updates-in-delta-live-tables/m-p/34320#M25089</link>
      <description>&lt;P&gt;Hi @Mojgan Mazouchi​&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;According to the docs "Tables can be&amp;nbsp;&lt;I&gt;incremental&lt;/I&gt;&amp;nbsp;or&amp;nbsp;&lt;I&gt;complete&lt;/I&gt;. Incremental tables support updates based on continually arriving data without having to recompute the entire table. A complete table is entirely recomputed with each update."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Docs here &lt;A href="https://docs.databricks.com/data-engineering/delta-live-tables/delta-live-tables-user-guide.html#datasets" target="test_blank"&gt;https://docs.databricks.com/data-engineering/delta-live-tables/delta-live-tables-user-guide.html#datasets&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Nov 2021 18:47:37 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/incremental-updates-in-delta-live-tables/m-p/34320#M25089</guid>
      <dc:creator>jose_gonzalez</dc:creator>
      <dc:date>2021-11-29T18:47:37Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental updates in Delta Live Tables</title>
      <link>https://community.databricks.com/t5/data-engineering/incremental-updates-in-delta-live-tables/m-p/34321#M25090</link>
      <description>&lt;P&gt;That implies that if there is any logic change for complete tables since it is recomputed on every update it is safe to not refresh the pipeline, where as with incremental tables if there is any change to recompute the changes we should refresh the pipeline, right?&lt;/P&gt;</description>
      <pubDate>Mon, 29 Nov 2021 18:58:16 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/incremental-updates-in-delta-live-tables/m-p/34321#M25090</guid>
      <dc:creator>morganmazouchi</dc:creator>
      <dc:date>2021-11-29T18:58:16Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental updates in Delta Live Tables</title>
      <link>https://community.databricks.com/t5/data-engineering/incremental-updates-in-delta-live-tables/m-p/34322#M25091</link>
      <description>&lt;P&gt;According to the docs, yes.&lt;/P&gt;</description>
      <pubDate>Fri, 10 Dec 2021 23:52:03 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/incremental-updates-in-delta-live-tables/m-p/34322#M25091</guid>
      <dc:creator>jose_gonzalez</dc:creator>
      <dc:date>2021-12-10T23:52:03Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental updates in Delta Live Tables</title>
      <link>https://community.databricks.com/t5/data-engineering/incremental-updates-in-delta-live-tables/m-p/34323#M25092</link>
      <description>&lt;P&gt;Thanks Jose!&lt;/P&gt;</description>
      <pubDate>Sun, 12 Dec 2021 18:30:13 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/incremental-updates-in-delta-live-tables/m-p/34323#M25092</guid>
      <dc:creator>morganmazouchi</dc:creator>
      <dc:date>2021-12-12T18:30:13Z</dc:date>
    </item>
  </channel>
</rss>

