<?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: Using Delta Tables without Time Travel features? in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/using-delta-tables-without-time-travel-features/m-p/22923#M15787</link>
    <description>&lt;P&gt;Thank you Hubert&lt;/P&gt;</description>
    <pubDate>Thu, 14 Apr 2022 11:43:59 GMT</pubDate>
    <dc:creator>Mark1</dc:creator>
    <dc:date>2022-04-14T11:43:59Z</dc:date>
    <item>
      <title>Using Delta Tables without Time Travel features?</title>
      <link>https://community.databricks.com/t5/data-engineering/using-delta-tables-without-time-travel-features/m-p/22921#M15785</link>
      <description>&lt;P&gt;Hi Everyone / Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is it possible to use Delta Tables without the Time Travel features? We are primarily interested in using the DML Features (delete, update, merge into, etc)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;</description>
      <pubDate>Wed, 13 Apr 2022 15:45:01 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/using-delta-tables-without-time-travel-features/m-p/22921#M15785</guid>
      <dc:creator>Mark1</dc:creator>
      <dc:date>2022-04-13T15:45:01Z</dc:date>
    </item>
    <item>
      <title>Re: Using Delta Tables without Time Travel features?</title>
      <link>https://community.databricks.com/t5/data-engineering/using-delta-tables-without-time-travel-features/m-p/22922#M15786</link>
      <description>&lt;P&gt;You can use the below code to delete all time travel features (older snapshot) older than 1 hour. Better not use 0 hours as you can delete current write and have a data consistency problem. If you don't need ACID features, including the ability to do concurrent writes, you can consider using parquet instead.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;from delta.tables import *
spark.conf.set("spark.databricks.delta.retentionDurationCheck.enabled", "false")
deltaTable = DeltaTable.forPath(spark, deltaPath)
deltaTable.vacuum(1)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Apr 2022 16:00:10 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/using-delta-tables-without-time-travel-features/m-p/22922#M15786</guid>
      <dc:creator>Hubert-Dudek</dc:creator>
      <dc:date>2022-04-13T16:00:10Z</dc:date>
    </item>
    <item>
      <title>Re: Using Delta Tables without Time Travel features?</title>
      <link>https://community.databricks.com/t5/data-engineering/using-delta-tables-without-time-travel-features/m-p/22923#M15787</link>
      <description>&lt;P&gt;Thank you Hubert&lt;/P&gt;</description>
      <pubDate>Thu, 14 Apr 2022 11:43:59 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/using-delta-tables-without-time-travel-features/m-p/22923#M15787</guid>
      <dc:creator>Mark1</dc:creator>
      <dc:date>2022-04-14T11:43:59Z</dc:date>
    </item>
  </channel>
</rss>

