<?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: Landing Layer vs. Bronze Layer — When to Use Which? in Warehousing &amp; Analytics</title>
    <link>https://community.databricks.com/t5/warehousing-analytics/landing-layer-vs-bronze-layer-when-to-use-which/m-p/166567#M2704</link>
    <description>&lt;P&gt;The choice mainly depends on replay, audit, and governance needs. If you need a reliable source of truth for reprocessing, keep raw files separate from Bronze. Otherwise, treating raw files as Bronze can reduce storage, cost, and complexity. Make the decision based on retention requirements, source reliability, data volume, and how often you expect to replay data.&lt;/P&gt;</description>
    <pubDate>Thu, 27 Aug 2026 09:07:00 GMT</pubDate>
    <dc:creator>masonreed11</dc:creator>
    <dc:date>2026-08-27T09:07:00Z</dc:date>
    <item>
      <title>Landing Layer vs. Bronze Layer — When to Use Which?</title>
      <link>https://community.databricks.com/t5/warehousing-analytics/landing-layer-vs-bronze-layer-when-to-use-which/m-p/166534#M2701</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I’ve seen two common approaches in data architectures:&lt;/SPAN&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;SPAN&gt;Landing → Bronze:&lt;/SPAN&gt;&lt;SPAN&gt; Raw files are first dumped into a landing layer, archived, and then loaded into Delta tables as Bronze.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Raw files = Bronze:&lt;/SPAN&gt;&lt;SPAN&gt; The raw file dump itself is treated as the Bronze layer.&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;SPAN&gt;Both have their pros and cons, but I haven’t found a clear rule for when to choose one over the other.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;What factors should drive this decision? For example, replay/reprocessing needs, retention, governance, data volume, cost, or source-system characteristics.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Would love to hear how others make this decision in real-world data platforms.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Aug 2026 18:15:55 GMT</pubDate>
      <guid>https://community.databricks.com/t5/warehousing-analytics/landing-layer-vs-bronze-layer-when-to-use-which/m-p/166534#M2701</guid>
      <dc:creator>VTiw25</dc:creator>
      <dc:date>2026-08-26T18:15:55Z</dc:date>
    </item>
    <item>
      <title>Re: Landing Layer vs. Bronze Layer — When to Use Which?</title>
      <link>https://community.databricks.com/t5/warehousing-analytics/landing-layer-vs-bronze-layer-when-to-use-which/m-p/166535#M2702</link>
      <description>&lt;P&gt;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/125536"&gt;@VTiw25&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It hinges on&lt;SPAN&gt;&amp;nbsp;the&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;source reliability&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;and&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;reprocessing &lt;/STRONG&gt;needs. You can use a separate landing layer when ingesting from unreliable sources (APIs, third-party SFTP, partner feeds) where data may arrive corrupted, incomplete or need to be rejected before bronze. The landing zone acts as an immutable archive for replaying the exact original state without re-requesting from source. Choose landing when&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;regulatory compliance&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;or&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;audit requirements&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;mandate preserving exact raw files indefinitely, when source systems cannot re deliver historical data or when you need to&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;decouple ingestion cadence from processing&lt;/STRONG&gt;. You can skip the landing layer for high volume streaming sources (Kafka), or cases where the source system can replay data on demand. Direct to bronze with Auto Loader or streaming ingestion reduces storage costs and latency.&lt;/P&gt;&lt;P&gt;If schema evolution happens frequently requiring file level reprocessing or governance demands separating data received from data validated, the landing layer is a must. You can implement archival policies (move to cold storage after 30 days etc) to control costs.&lt;/P&gt;</description>
      <pubDate>Wed, 26 Aug 2026 18:37:23 GMT</pubDate>
      <guid>https://community.databricks.com/t5/warehousing-analytics/landing-layer-vs-bronze-layer-when-to-use-which/m-p/166535#M2702</guid>
      <dc:creator>balajij8</dc:creator>
      <dc:date>2026-08-26T18:37:23Z</dc:date>
    </item>
    <item>
      <title>Re: Landing Layer vs. Bronze Layer — When to Use Which?</title>
      <link>https://community.databricks.com/t5/warehousing-analytics/landing-layer-vs-bronze-layer-when-to-use-which/m-p/166553#M2703</link>
      <description>&lt;P&gt;Thank you for your question :&lt;/P&gt;&lt;P&gt;Few factors will decide the approaches to be considered like if data replay, data consistency, data volume and data query patterns from the business etc.,&lt;/P&gt;&lt;P&gt;I am also faced similar situation : for one usecase we directly loaded the data from landing to bronze using autoloader and with `cleanSource` option we archived the data in timewindow basis, another scenario like data is no need of replay and its one time activity or short term activity so considered `Landing` raw files as Bronze.&lt;/P&gt;&lt;P&gt;Final verdict :&lt;/P&gt;&lt;P&gt;1. Data volume, data pattern, incoming payload matters to decide&lt;/P&gt;&lt;P&gt;2. Replay necessity as per business segment give more context to decide.&lt;/P&gt;&lt;P&gt;3. Single time activity or incremental activity ?&lt;/P&gt;</description>
      <pubDate>Thu, 27 Aug 2026 04:28:04 GMT</pubDate>
      <guid>https://community.databricks.com/t5/warehousing-analytics/landing-layer-vs-bronze-layer-when-to-use-which/m-p/166553#M2703</guid>
      <dc:creator>saisaranv</dc:creator>
      <dc:date>2026-08-27T04:28:04Z</dc:date>
    </item>
    <item>
      <title>Re: Landing Layer vs. Bronze Layer — When to Use Which?</title>
      <link>https://community.databricks.com/t5/warehousing-analytics/landing-layer-vs-bronze-layer-when-to-use-which/m-p/166567#M2704</link>
      <description>&lt;P&gt;The choice mainly depends on replay, audit, and governance needs. If you need a reliable source of truth for reprocessing, keep raw files separate from Bronze. Otherwise, treating raw files as Bronze can reduce storage, cost, and complexity. Make the decision based on retention requirements, source reliability, data volume, and how often you expect to replay data.&lt;/P&gt;</description>
      <pubDate>Thu, 27 Aug 2026 09:07:00 GMT</pubDate>
      <guid>https://community.databricks.com/t5/warehousing-analytics/landing-layer-vs-bronze-layer-when-to-use-which/m-p/166567#M2704</guid>
      <dc:creator>masonreed11</dc:creator>
      <dc:date>2026-08-27T09:07:00Z</dc:date>
    </item>
  </channel>
</rss>

