<?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: Does liquid clustering preserve auditable tenant separation in a shared Delta table architecture in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/does-liquid-clustering-preserve-auditable-tenant-separation-in-a/m-p/157558#M54588</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/209827"&gt;@batch_bender&lt;/a&gt;,&lt;/P&gt;
&lt;P class="wnfdntf _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea" data-pm-slice="1 1 []"&gt;I think the key distinction is between data layout for performance and isolation as a control boundary.&lt;/P&gt;
&lt;P class="wnfdntf _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;My view is that Liquid Clustering should not be presented as a tenant-isolation mechanism. The official docs describe it as a &lt;A href="https://docs.databricks.com/aws/en/delta/clustering" rel="noopener noreferrer nofollow" target="_blank"&gt;data layout optimization&lt;/A&gt; that replaces partitioning and ZORDER to improve skipping, maintenance, and adaptability. In other words, it is primarily about how data is organised for query performance, not about creating a hard tenant boundary.&lt;/P&gt;
&lt;P&gt;If your question is whether partitioning by tenant_id is fundamentally different, the answer is that it provides stronger physical grouping than Liquid Clustering. However, it is still not the same&amp;nbsp;as hard isolation.&lt;/P&gt;
&lt;P&gt;With Hive-style partitioning, rows for a given partition value are written under partition-specific paths/directories. That can make it easier to reason about where a tenant’s data lives and can be helpful for some operational or audit discussions.&lt;/P&gt;
&lt;P&gt;With Liquid Clustering, Databricks explicitly positions it as a replacement for partitioning for layout/performance reasons, and the docs call out its flexibility as the main advantage.... for example, you can change clustering keys without the same rigid coupling you get with partitioning. See the official &lt;A href="https://docs.databricks.com/aws/en/delta/clustering" rel="noopener noreferrer nofollow" target="_blank"&gt;liquid clustering docs&lt;/A&gt; and the &lt;A href="https://www.databricks.com/blog/announcing-automatic-liquid-clustering" rel="noopener noreferrer nofollow" target="_blank"&gt;announcement blog&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;So if the requirement is "optimise reads/writes on shared multi-tenant tables," Liquid Clustering is often the better fit. If the requirement is "demonstrate that tenant data is physically segregated as an isolation boundary," I would be cautious about treating either partitioning or Liquid Clustering as the actual control.&lt;/P&gt;
&lt;P class="wnfdntf _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;That last point is the most important one.&lt;/P&gt;
&lt;P class="wnfdntf _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;In practice, I’d describe the options like this:&lt;/P&gt;
&lt;P class="wnfdntf _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;&lt;STRONG&gt;Shared table + Liquid Clustering&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI class="wnfdntf _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;Good for performance and operational simplicity&lt;/LI&gt;
&lt;LI class="wnfdntf _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;Best viewed as a layout optimisation&lt;/LI&gt;
&lt;LI class="wnfdntf _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;Not something I would rely on as the primary evidence of tenant isolation&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;STRONG style="color: #1b3139; font-family: inherit;"&gt;Shared table + tenant partitioning&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI class="wnfdntf _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;Still primarily a storage layout technique&lt;/LI&gt;
&lt;LI class="wnfdntf _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;Gives you more obvious physical grouping by tenant than Liquid Clustering&lt;/LI&gt;
&lt;LI class="wnfdntf _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;May be acceptable in some environments if the audit requirement is really about coarse physical separation plus access controls&lt;/LI&gt;
&lt;LI class="wnfdntf _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;But I still would not call it a hard isolation boundary in the same way as separate tables/storage&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;STRONG style="color: #1b3139; font-family: inherit;"&gt;Separate table / schema / catalog / storage location per tenant&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL dir="auto"&gt;
&lt;LI dir="auto"&gt;
&lt;P class="wnfdntf _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;This is the cleaner answer when the requirement is true demonstrable isolation, reduced blast radius, or customer-specific boundary enforcement&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;P class="wnfdntf _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;So to answer the original question directly... if partitioning by tenant is already considered acceptable by Audit/SLA interpretation, then Liquid Clustering is still usually viewed differently. Partitioning can support a "physically grouped by tenant" argument in a way that Liquid Clustering generally does not. But from a strict architecture perspective, both are still data-layout mechanisms, not the same thing as a hard tenant isolation boundary.&lt;/P&gt;
&lt;P class="wnfdntf _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;One other public datapoint that may matter depending on the use case... the &lt;A href="https://docs.databricks.com/aws/en/delta-sharing/" rel="noopener noreferrer nofollow" target="_blank"&gt;Delta Sharing docs&lt;/A&gt; explicitly call out some current limitations around sharing liquid-clustered tables with partition filtering. That is another hint that Liquid Clustering and partition-style tenant boundary semantics are not interchangeable today.&lt;/P&gt;
&lt;P class="wnfdntf _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;Hope this helps.&lt;/P&gt;
&lt;P class="p1"&gt;&lt;FONT size="2" color="#FF6600"&gt;&lt;STRONG&gt;&lt;I&gt;If this answer resolves your question, could you mark it as “Accept as Solution”? That helps other users quickly find the correct fix.&lt;/I&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;I&gt;&lt;/I&gt;&lt;/P&gt;</description>
    <pubDate>Sun, 24 May 2026 13:31:53 GMT</pubDate>
    <dc:creator>Ashwin_DSA</dc:creator>
    <dc:date>2026-05-24T13:31:53Z</dc:date>
    <item>
      <title>Does liquid clustering preserve auditable tenant separation in a shared Delta table architecture?</title>
      <link>https://community.databricks.com/t5/data-engineering/does-liquid-clustering-preserve-auditable-tenant-separation-in-a/m-p/157550#M54582</link>
      <description>&lt;P&gt;&lt;SPAN&gt;We’re evaluating a multi-tenant Databricks architecture and considering Liquid Clustering on shared Delta tables. Our concern is that tenant SLAs require data separation for audit/compliance purposes.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I’m trying to understand whether Liquid Clustering is compatible with environments where tenant data must remain demonstrably isolated, or whether this becomes a logical-vs-physical isolation issue that would require separate tables/catalogs/storage per tenant.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Has anyone dealt with this tradeoff in practice?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 24 May 2026 09:29:18 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/does-liquid-clustering-preserve-auditable-tenant-separation-in-a/m-p/157550#M54582</guid>
      <dc:creator>batch_bender</dc:creator>
      <dc:date>2026-05-24T09:29:18Z</dc:date>
    </item>
    <item>
      <title>Re: Does liquid clustering preserve auditable tenant separation in a shared Delta table architecture</title>
      <link>https://community.databricks.com/t5/data-engineering/does-liquid-clustering-preserve-auditable-tenant-separation-in-a/m-p/157553#M54585</link>
      <description>&lt;P&gt;Liquid Clustering aims to maximize read throughput and minimize data skew. It is critical not to combine&amp;nbsp;performance optimization aspect-based features with security boundaries&amp;nbsp;when designing for strict regulatory compliance cases.&lt;/P&gt;&lt;P&gt;You can follow the pattern of Catalog per tenant or Schema per tenant as they are bound to distinct storage locations via Unity Catalog.&lt;/P&gt;&lt;P&gt;You can enable Liquid Clustering inside each tenant's isolated tables (under Catalog/Schema) to maintain performance &amp;amp; SLAs but using it as a mechanism to achieve tenant separation is a bad practice leading to compliance issues.&lt;/P&gt;</description>
      <pubDate>Sun, 24 May 2026 11:55:21 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/does-liquid-clustering-preserve-auditable-tenant-separation-in-a/m-p/157553#M54585</guid>
      <dc:creator>balajij8</dc:creator>
      <dc:date>2026-05-24T11:55:21Z</dc:date>
    </item>
    <item>
      <title>Re: Does liquid clustering preserve auditable tenant separation in a shared Delta table architecture</title>
      <link>https://community.databricks.com/t5/data-engineering/does-liquid-clustering-preserve-auditable-tenant-separation-in-a/m-p/157555#M54586</link>
      <description>&lt;P&gt;&lt;SPAN&gt;If partitioning by tenant is considered acceptable for our audit/SLA requirements, would Liquid Clustering be viewed differently, or are they both effectively storage-layout optimizations rather than true isolation boundaries?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 24 May 2026 12:18:34 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/does-liquid-clustering-preserve-auditable-tenant-separation-in-a/m-p/157555#M54586</guid>
      <dc:creator>batch_bender</dc:creator>
      <dc:date>2026-05-24T12:18:34Z</dc:date>
    </item>
    <item>
      <title>Re: Does liquid clustering preserve auditable tenant separation in a shared Delta table architecture</title>
      <link>https://community.databricks.com/t5/data-engineering/does-liquid-clustering-preserve-auditable-tenant-separation-in-a/m-p/157558#M54588</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/209827"&gt;@batch_bender&lt;/a&gt;,&lt;/P&gt;
&lt;P class="wnfdntf _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea" data-pm-slice="1 1 []"&gt;I think the key distinction is between data layout for performance and isolation as a control boundary.&lt;/P&gt;
&lt;P class="wnfdntf _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;My view is that Liquid Clustering should not be presented as a tenant-isolation mechanism. The official docs describe it as a &lt;A href="https://docs.databricks.com/aws/en/delta/clustering" rel="noopener noreferrer nofollow" target="_blank"&gt;data layout optimization&lt;/A&gt; that replaces partitioning and ZORDER to improve skipping, maintenance, and adaptability. In other words, it is primarily about how data is organised for query performance, not about creating a hard tenant boundary.&lt;/P&gt;
&lt;P&gt;If your question is whether partitioning by tenant_id is fundamentally different, the answer is that it provides stronger physical grouping than Liquid Clustering. However, it is still not the same&amp;nbsp;as hard isolation.&lt;/P&gt;
&lt;P&gt;With Hive-style partitioning, rows for a given partition value are written under partition-specific paths/directories. That can make it easier to reason about where a tenant’s data lives and can be helpful for some operational or audit discussions.&lt;/P&gt;
&lt;P&gt;With Liquid Clustering, Databricks explicitly positions it as a replacement for partitioning for layout/performance reasons, and the docs call out its flexibility as the main advantage.... for example, you can change clustering keys without the same rigid coupling you get with partitioning. See the official &lt;A href="https://docs.databricks.com/aws/en/delta/clustering" rel="noopener noreferrer nofollow" target="_blank"&gt;liquid clustering docs&lt;/A&gt; and the &lt;A href="https://www.databricks.com/blog/announcing-automatic-liquid-clustering" rel="noopener noreferrer nofollow" target="_blank"&gt;announcement blog&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;So if the requirement is "optimise reads/writes on shared multi-tenant tables," Liquid Clustering is often the better fit. If the requirement is "demonstrate that tenant data is physically segregated as an isolation boundary," I would be cautious about treating either partitioning or Liquid Clustering as the actual control.&lt;/P&gt;
&lt;P class="wnfdntf _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;That last point is the most important one.&lt;/P&gt;
&lt;P class="wnfdntf _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;In practice, I’d describe the options like this:&lt;/P&gt;
&lt;P class="wnfdntf _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;&lt;STRONG&gt;Shared table + Liquid Clustering&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI class="wnfdntf _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;Good for performance and operational simplicity&lt;/LI&gt;
&lt;LI class="wnfdntf _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;Best viewed as a layout optimisation&lt;/LI&gt;
&lt;LI class="wnfdntf _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;Not something I would rely on as the primary evidence of tenant isolation&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;STRONG style="color: #1b3139; font-family: inherit;"&gt;Shared table + tenant partitioning&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI class="wnfdntf _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;Still primarily a storage layout technique&lt;/LI&gt;
&lt;LI class="wnfdntf _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;Gives you more obvious physical grouping by tenant than Liquid Clustering&lt;/LI&gt;
&lt;LI class="wnfdntf _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;May be acceptable in some environments if the audit requirement is really about coarse physical separation plus access controls&lt;/LI&gt;
&lt;LI class="wnfdntf _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;But I still would not call it a hard isolation boundary in the same way as separate tables/storage&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;STRONG style="color: #1b3139; font-family: inherit;"&gt;Separate table / schema / catalog / storage location per tenant&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL dir="auto"&gt;
&lt;LI dir="auto"&gt;
&lt;P class="wnfdntf _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;This is the cleaner answer when the requirement is true demonstrable isolation, reduced blast radius, or customer-specific boundary enforcement&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;P class="wnfdntf _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;So to answer the original question directly... if partitioning by tenant is already considered acceptable by Audit/SLA interpretation, then Liquid Clustering is still usually viewed differently. Partitioning can support a "physically grouped by tenant" argument in a way that Liquid Clustering generally does not. But from a strict architecture perspective, both are still data-layout mechanisms, not the same thing as a hard tenant isolation boundary.&lt;/P&gt;
&lt;P class="wnfdntf _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;One other public datapoint that may matter depending on the use case... the &lt;A href="https://docs.databricks.com/aws/en/delta-sharing/" rel="noopener noreferrer nofollow" target="_blank"&gt;Delta Sharing docs&lt;/A&gt; explicitly call out some current limitations around sharing liquid-clustered tables with partition filtering. That is another hint that Liquid Clustering and partition-style tenant boundary semantics are not interchangeable today.&lt;/P&gt;
&lt;P class="wnfdntf _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;Hope this helps.&lt;/P&gt;
&lt;P class="p1"&gt;&lt;FONT size="2" color="#FF6600"&gt;&lt;STRONG&gt;&lt;I&gt;If this answer resolves your question, could you mark it as “Accept as Solution”? That helps other users quickly find the correct fix.&lt;/I&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;I&gt;&lt;/I&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 24 May 2026 13:31:53 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/does-liquid-clustering-preserve-auditable-tenant-separation-in-a/m-p/157558#M54588</guid>
      <dc:creator>Ashwin_DSA</dc:creator>
      <dc:date>2026-05-24T13:31:53Z</dc:date>
    </item>
  </channel>
</rss>

