Skip to content

What Liquid Clustering and predictive optimization actually do

Liquid Clustering is Delta Lake's data layout strategy that replaces partitioning and ZORDER, incrementally clustering data on chosen columns without full rewrites. Predictive Optimization uses Databricks AI/telemetry to automatically run OPTIMIZE, VACUUM, and (for clustered tables) clustering maintenance on Unity Catalog managed tables, removing the need for manual scheduling.

Must-know

  • Liquid Clustering is enabled with CLUSTER BY (columns) at table creation or via ALTER TABLE; you can change clustering keys anytime without rewriting existing data.
  • It replaces the need for partitioning, ZORDER, and manual tuning of file sizes, and avoids the small-file/over-partitioning problems of Hive-style partitioning.
  • Liquid Clustering supports up to 4 clustering columns and works well for high-cardinality columns and evolving query patterns.
  • Predictive Optimization requires Unity Catalog managed tables and is enabled at the account, catalog, or schema level (schema/catalog settings can override account default).
  • Predictive Optimization automatically determines when to run OPTIMIZE (including clustering for Liquid Clustering tables) and VACUUM based on usage patterns, so manual OPTIMIZE/VACUUM scheduling is generally unnecessary once enabled.
  • Predictive Optimization incurs compute costs billed as serverless usage, separate from manually triggered jobs, and its run history/effects can be monitored via system tables.
Check this objectiveFree · always available

A data engineering team maintains a Delta table queried with filters on customer_region and order_date, but the filter columns change depending on the report. The table receives frequent merges and grows several GB daily. Which feature should the team enable to keep query performance stable without manual tuning?

Your objective map0 tried · 0 right · 33 untouched

What you have tried across Databricks DEA's objectives, not a readiness score.

Coverage checked against the published exam guide on Jul 27, 2026.

These are independent practice questions, written against this certification's published exam guide. They are not the certification vendor's own questions, and not the real exam.