<?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: Liquid Clustering VS Z-ordering in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/liquid-clustering-vs-z-ordering/m-p/158013#M54647</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/229992"&gt;@Rupa0503&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;In simple terms... both Liquid Clustering and Z-ordering are ways to improve data layout so Databricks can skip more irrelevant files during reads, but they are not the same thing.&lt;/P&gt;
&lt;P&gt;If I had to summarise it simply...&amp;nbsp; Z-ordering is the older, more manual way to colocate related values in the same set of files, while Liquid Clustering is the newer, more flexible approach that Databricks now recommends for new tables.&lt;/P&gt;
&lt;P&gt;A practical difference is that Liquid Clustering is designed to replace both partitioning and ZORDER for table layout, and it is not compatible with Z-ordering on the same table.&lt;/P&gt;
&lt;P&gt;Here’s the intuitive version of how they work:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Z-ordering reorganises data so rows with similar values across the chosen columns end up physically closer together in the same files. Databricks then uses file-level statistics, such as min/max values, to skip files unlikely to match the query.&lt;/LI&gt;
&lt;LI&gt;Liquid Clustering also improves file skipping, but instead of you having to rely on a more rigid layout strategy, it organizes data around clustering keys and lets that layout evolve more easily over time.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;One nice way to think about it is this..&amp;nbsp;&lt;SPAN&gt;Imagine a warehouse.&lt;/SPAN&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Z-ordering is like manually rearranging the shelves so items that are often requested together are stored near each other. That helps workers walk less, but if demand patterns change, you may need to reorganise again.&lt;/LI&gt;
&lt;LI&gt;Liquid Clustering is more like having a smarter warehouse layout system where you define the important access dimensions, and the system keeps organising incoming inventory around those keys with much less rigidity. If your access pattern changes, you can change the clustering keys without the same kind of full redesign you would normally worry about with traditional partitioning.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;A few concrete differences that usually help..&amp;nbsp;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;With Z-ordering, you typically run OPTIMIZE ... ZORDER BY (...) to rewrite data for the columns you care about. It works, but it is more of an explicit maintenance choice.&amp;nbsp;With Liquid Clustering, you define clustering using CLUSTER BY, and Databricks can incrementally cluster data with OPTIMIZE. You can also redefine clustering keys later without rewriting existing data.&lt;/LI&gt;
&lt;LI&gt;Databricks recommends Liquid Clustering for all new tables, whereas Z-ordering is still documented but no longer the recommended default for new layouts.&lt;/LI&gt;
&lt;LI&gt;Z-ordering can work well when queries frequently filter on high-cardinality columns, but its effectiveness drops as you add more columns to the ZORDER list.&amp;nbsp;With Liquid Clustering, the docs explicitly say key order does not matter, which removes one more tuning decision from the user.&lt;/LI&gt;
&lt;LI&gt;If query patterns change over time, Liquid Clustering is better suited to that because the clustering definition can evolve. With automatic liquid clustering on supported tables, Databricks can even analyze historical query workload and choose or adapt keys for you.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;So if you want a simple rule of thumb... a)&amp;nbsp;&lt;SPAN&gt;Use Liquid Clustering for new tables. b)&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;Think of Z-ordering mainly as the older layout optimisation mechanism you may still see on existing tables. c)&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;Don’t use both together on the same table.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;To&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/231077"&gt;@ShamenParis&lt;/a&gt;&amp;nbsp;point around costs... Standard Liquid Clustering can be a good fit if you want the benefits of Liquid Clustering but prefer to control when maintenance runs and what compute it uses. Automatic Liquid Clustering depends on Predictive Optimisation, which runs maintenance on serverless jobs compute and is billed separately. That said, Auto Liquid is designed to be cost-aware and can reduce overall TCO when the performance gains justify the maintenance cost. I wouldn't classify that as an expensive mode. &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;If useful, the official docs here are the best references...&amp;nbsp;&lt;A href="https://docs.databricks.com/aws/en/delta/clustering" rel="noopener noreferrer nofollow" target="_blank"&gt;Liquid Clustering docs&lt;/A&gt;&amp;nbsp;and&amp;nbsp;&lt;A href="https://docs.databricks.com/aws/en/delta/data-skipping" rel="noopener noreferrer nofollow" target="_blank"&gt;Data skipping and Z-ordering docs.&lt;/A&gt;&lt;/P&gt;
&lt;P&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;
&lt;P class="wnfdntf _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 31 May 2026 20:12:41 GMT</pubDate>
    <dc:creator>Ashwin_DSA</dc:creator>
    <dc:date>2026-05-31T20:12:41Z</dc:date>
    <item>
      <title>Liquid Clustering VS Z-ordering</title>
      <link>https://community.databricks.com/t5/data-engineering/liquid-clustering-vs-z-ordering/m-p/157984#M54643</link>
      <description>&lt;P&gt;I want to understand difference b/w&amp;nbsp;Liquid Clustering VS Z-ordering and also how both works?&lt;/P&gt;</description>
      <pubDate>Sun, 31 May 2026 08:06:44 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/liquid-clustering-vs-z-ordering/m-p/157984#M54643</guid>
      <dc:creator>Rupa0503</dc:creator>
      <dc:date>2026-05-31T08:06:44Z</dc:date>
    </item>
    <item>
      <title>Re: Liquid Clustering VS Z-ordering</title>
      <link>https://community.databricks.com/t5/data-engineering/liquid-clustering-vs-z-ordering/m-p/157985#M54644</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/229992"&gt;@Rupa0503&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;P&gt;Liquid Clustering is basically the modern replacement for Z-ordering. Both are great for data skipping (faster reads), but Liquid fixes a lot of Z-order's headaches.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;How They Work (and why Liquid wins)&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Z-Ordering:&lt;/STRONG&gt; It's rigid. When you add new data and run OPTIMIZE, it often has to rewrite a ton of your existing files to keep things sorted. It's slow and computationally expensive.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Liquid Clustering:&lt;/STRONG&gt; It's flexible and &lt;STRONG&gt;incremental&lt;/STRONG&gt;. When you optimize, Databricks only processes what it needs to. It's way faster to update, handles skewed data better, and lets you change clustering keys without rewriting the whole table.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;How to Use It / Migrate&lt;/STRONG&gt; Moving from Z-order to Liquid is super easy using ALTER TABLE:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Use Standard Liquid:&lt;/STRONG&gt; ALTER TABLE table CLUSTER BY (col1, col2) &lt;I&gt;(Just remember to run OPTIMIZE afterward!)&lt;/I&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Use Auto Liquid:&lt;/STRONG&gt; ALTER TABLE table CLUSTER BY AUTO &lt;I&gt;(Note: requires Predictive Optimization enabled)&lt;/I&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Turn it off:&lt;/STRONG&gt; ALTER TABLE table CLUSTER BY NONE&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;My Personal Benchmarks &amp;amp; Recommendation&lt;/STRONG&gt; I tested Z-order, Standard Liquid, and Auto Liquid with the exact same data and tables. Here is the verdict:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Reads:&lt;/STRONG&gt; All three perform about the same.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Writes/Optimization:&lt;/STRONG&gt; Auto Liquid is definitely the fastest.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Cost (My Pick):&lt;/STRONG&gt; I personally stick to &lt;STRONG&gt;Standard Liquid Clustering&lt;/STRONG&gt; to save money. Auto Liquid uses Predictive Optimization, which runs on Serverless compute and adds extra costs. Standard Liquid gives you all the incremental speed benefits over Z-order, but leaves you in control of your compute bill!&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Sun, 31 May 2026 09:39:00 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/liquid-clustering-vs-z-ordering/m-p/157985#M54644</guid>
      <dc:creator>ShamenParis</dc:creator>
      <dc:date>2026-05-31T09:39:00Z</dc:date>
    </item>
    <item>
      <title>Re: Liquid Clustering VS Z-ordering</title>
      <link>https://community.databricks.com/t5/data-engineering/liquid-clustering-vs-z-ordering/m-p/157988#M54646</link>
      <description>&lt;P&gt;&lt;A href="https://community.databricks.com/t5/user/viewprofilepage/user-id/229992" target="_blank"&gt;@Rupa0503&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN class=""&gt;Both are optimization approaches for Delta Lake query performance but differ in flexibility and maintenance.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;Z-Ordering&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN class=""&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;is an optimization approach that co locates related data across&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class=""&gt;multiple&lt;/SPAN&gt;&lt;SPAN class=""&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;columns within files based on the setup you create.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN class=""&gt;You manually specify columns via&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;STRONG&gt;OPTIMIZE table ZORDER BY (col1, col2)&lt;/STRONG&gt;&amp;nbsp;&lt;SPAN class=""&gt;and run&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;OPTIMIZE&lt;/STRONG&gt;&lt;SPAN class=""&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;periodically to maintain layout as data grows. It's&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class=""&gt;ideal for stable&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;legacy&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;read heavy workloads with predictable filter patterns&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;During OPTIMIZE&lt;SPAN class=""&gt;, files are rewritten to&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;interleave&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;values across specified dimensions improving multi column filter skipping.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class=""&gt;You can use&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;Z Ordering&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN class=""&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;for legacy tables with stable low-cardinality filters&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;Liquid Clustering&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN class=""&gt;&amp;nbsp;is the modern &amp;amp; my recommended approach for new tables&lt;/SPAN&gt;&lt;SPAN class=""&gt;. It uses a tree-based algorithm to incrementally organize data by clustering keys&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class=""&gt;without&lt;/SPAN&gt;&lt;SPAN class=""&gt;&amp;nbsp;full rewrites.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;UL class=""&gt;&lt;LI&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;Dynamic&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN class=""&gt;: Change clustering keys anytime via&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;STRONG&gt;CLUSTER BY (cols)&lt;/STRONG&gt;&lt;SPAN class=""&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;without rewriting existing data&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;Automatic &amp;amp; Incremental&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN class=""&gt;: Supports&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;STRONG&gt;CLUSTER BY AUTO&lt;/STRONG&gt;&lt;SPAN class=""&gt;&amp;nbsp;to allow Databricks select optimal keys based on query history&lt;/SPAN&gt;&lt;SPAN class=""&gt;.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;Handles complexity&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN class=""&gt;: Better for high-cardinality columns, skewed data or evolving query pattern&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN class=""&gt;Use&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;Liquid Clustering&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN class=""&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;for new tables with high-cardinality filters, concurrent writes or when query patterns evolve&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;SPAN class=""&gt;More details&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://www.canadiandataguy.com/p/optimizing-delta-lake-tables-liquid" rel="noopener nofollow noreferrer" target="_blank"&gt;here&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 31 May 2026 10:54:29 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/liquid-clustering-vs-z-ordering/m-p/157988#M54646</guid>
      <dc:creator>balajij8</dc:creator>
      <dc:date>2026-05-31T10:54:29Z</dc:date>
    </item>
    <item>
      <title>Re: Liquid Clustering VS Z-ordering</title>
      <link>https://community.databricks.com/t5/data-engineering/liquid-clustering-vs-z-ordering/m-p/158013#M54647</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/229992"&gt;@Rupa0503&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;In simple terms... both Liquid Clustering and Z-ordering are ways to improve data layout so Databricks can skip more irrelevant files during reads, but they are not the same thing.&lt;/P&gt;
&lt;P&gt;If I had to summarise it simply...&amp;nbsp; Z-ordering is the older, more manual way to colocate related values in the same set of files, while Liquid Clustering is the newer, more flexible approach that Databricks now recommends for new tables.&lt;/P&gt;
&lt;P&gt;A practical difference is that Liquid Clustering is designed to replace both partitioning and ZORDER for table layout, and it is not compatible with Z-ordering on the same table.&lt;/P&gt;
&lt;P&gt;Here’s the intuitive version of how they work:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Z-ordering reorganises data so rows with similar values across the chosen columns end up physically closer together in the same files. Databricks then uses file-level statistics, such as min/max values, to skip files unlikely to match the query.&lt;/LI&gt;
&lt;LI&gt;Liquid Clustering also improves file skipping, but instead of you having to rely on a more rigid layout strategy, it organizes data around clustering keys and lets that layout evolve more easily over time.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;One nice way to think about it is this..&amp;nbsp;&lt;SPAN&gt;Imagine a warehouse.&lt;/SPAN&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Z-ordering is like manually rearranging the shelves so items that are often requested together are stored near each other. That helps workers walk less, but if demand patterns change, you may need to reorganise again.&lt;/LI&gt;
&lt;LI&gt;Liquid Clustering is more like having a smarter warehouse layout system where you define the important access dimensions, and the system keeps organising incoming inventory around those keys with much less rigidity. If your access pattern changes, you can change the clustering keys without the same kind of full redesign you would normally worry about with traditional partitioning.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;A few concrete differences that usually help..&amp;nbsp;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;With Z-ordering, you typically run OPTIMIZE ... ZORDER BY (...) to rewrite data for the columns you care about. It works, but it is more of an explicit maintenance choice.&amp;nbsp;With Liquid Clustering, you define clustering using CLUSTER BY, and Databricks can incrementally cluster data with OPTIMIZE. You can also redefine clustering keys later without rewriting existing data.&lt;/LI&gt;
&lt;LI&gt;Databricks recommends Liquid Clustering for all new tables, whereas Z-ordering is still documented but no longer the recommended default for new layouts.&lt;/LI&gt;
&lt;LI&gt;Z-ordering can work well when queries frequently filter on high-cardinality columns, but its effectiveness drops as you add more columns to the ZORDER list.&amp;nbsp;With Liquid Clustering, the docs explicitly say key order does not matter, which removes one more tuning decision from the user.&lt;/LI&gt;
&lt;LI&gt;If query patterns change over time, Liquid Clustering is better suited to that because the clustering definition can evolve. With automatic liquid clustering on supported tables, Databricks can even analyze historical query workload and choose or adapt keys for you.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;So if you want a simple rule of thumb... a)&amp;nbsp;&lt;SPAN&gt;Use Liquid Clustering for new tables. b)&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;Think of Z-ordering mainly as the older layout optimisation mechanism you may still see on existing tables. c)&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;Don’t use both together on the same table.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;To&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/231077"&gt;@ShamenParis&lt;/a&gt;&amp;nbsp;point around costs... Standard Liquid Clustering can be a good fit if you want the benefits of Liquid Clustering but prefer to control when maintenance runs and what compute it uses. Automatic Liquid Clustering depends on Predictive Optimisation, which runs maintenance on serverless jobs compute and is billed separately. That said, Auto Liquid is designed to be cost-aware and can reduce overall TCO when the performance gains justify the maintenance cost. I wouldn't classify that as an expensive mode. &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;If useful, the official docs here are the best references...&amp;nbsp;&lt;A href="https://docs.databricks.com/aws/en/delta/clustering" rel="noopener noreferrer nofollow" target="_blank"&gt;Liquid Clustering docs&lt;/A&gt;&amp;nbsp;and&amp;nbsp;&lt;A href="https://docs.databricks.com/aws/en/delta/data-skipping" rel="noopener noreferrer nofollow" target="_blank"&gt;Data skipping and Z-ordering docs.&lt;/A&gt;&lt;/P&gt;
&lt;P&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;
&lt;P class="wnfdntf _1ibi0s3f5 _1ibi0s3ce _1ibi0s3ea"&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 31 May 2026 20:12:41 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/liquid-clustering-vs-z-ordering/m-p/158013#M54647</guid>
      <dc:creator>Ashwin_DSA</dc:creator>
      <dc:date>2026-05-31T20:12:41Z</dc:date>
    </item>
  </channel>
</rss>

