Databricks – Catalog, Schemas & Tables with External Location

this is exactly the core of Unity Catalog’s object model. The way Databricks resolves storage paths for managed tables depends on where you attach the external/managed location. Let’s break it down carefully by Catalog → Schema → Table levels.


🔑 Unity Catalog Storage Hierarchy

Unity Catalog object model:
Metastore → Catalog → Schema → Table

  • You can set managed storage locations (via external locations) at Metastore, Catalog, or Schema level.
  • Tables may also define a LOCATION clause (explicit path).
  • Databricks applies a fallback precedence:
    Schema location (if exists) → Catalog location (if exists) → Metastore location (if exists).

1️⃣ Catalog with External Location

When you create a catalog with an external location:

CREATE CATALOG dev_ext
MANAGED LOCATION 'abfss://data@<storage_account>.dfs.core.windows.net/ADB/catalog/';
  • Effect:
    • Any managed tables created inside this catalog (and its schemas) will, by default, write to this catalog’s external location.
    • The actual storage path will be: /ADB/catalog/<catalog-id>/tables/<table-id>/
    • If no schema-level location is set, the catalog’s location is used.
  • Example: CREATE SCHEMA dev_ext.bronze; CREATE TABLE dev_ext.bronze.sales (...) ; → Data files stored under the catalog-level path.

2️⃣ Schema with External Location

When you create a schema with an external location:

CREATE SCHEMA dev_ext.bronze_ext
MANAGED LOCATION 'abfss://data@<storage_account>.dfs.core.windows.net/ADB/schema/bronze_ext/';
  • Effect:
    • Any managed tables inside this schema are stored under the schema’s external location.
    • Schema location overrides the catalog location.
    • Actual storage path: /ADB/schema/bronze_ext/<schema-id>/tables/<table-id>/
  • Example: CREATE TABLE dev_ext.bronze_ext.sales (...) ; → Data files stored at the schema-level location.

3️⃣ Table with External Location

When you create a table with a LOCATION clause:

CREATE TABLE dev_ext.bronze.sales_external (
  id INT, product STRING, amount DOUBLE
)
LOCATION 'abfss://data@<storage_account>.dfs.core.windows.net/ADB/external-tables/sales_external';
  • Effect:
    • This is an external table, not a managed one.
    • The data files live exactly at the path you specify.
    • Databricks only manages metadata in Unity Catalog; it will never delete the underlying files if you drop the table.
  • Example:
    • Drop the table → metadata gone, files remain at /ADB/external-tables/sales_external/.
    • Undrop → metadata is restored (within 7 days).

🔄 Comparison Across Scenarios

ScenarioDefault Data StorageCleanup Behavior on DROP TABLE
Catalog with external locationTables stored under catalog’s managed path (/catalog/<catalog-id>/tables/<table-id>/)Dropping table: metadata removed, data files deleted after 7–30 days (grace period for undrop).
Schema with external locationTables stored under schema’s managed path (/schema/<schema-id>/tables/<table-id>/)Same as above: metadata gone immediately, data eventually deleted after retention period.
Table with LOCATION (external table)Data stored exactly at the specified path (/external-tables/<name>/)Metadata dropped immediately, data files always remain. UC never deletes them.

⚡ Key Takeaways

  • Metastore-level location = global default (used if neither catalog nor schema has a location).
  • Catalog-level location = default for all schemas under it (unless schema overrides).
  • Schema-level location = strongest override for managed tables.
  • Table with LOCATION = always external → UC does not manage lifecycle of data files.

👉 So, in short:

  • Catalog external location = whole catalog defaults there.
  • Schema external location = just that schema overrides catalog.
  • Table external location = explicit → always external, metadata-only management.

Related Posts

Modernizing AppSec: The Role of DevSecOps Consulting Services

Modern engineering teams deliver software faster than ever, releasing code multiple times a day across complex multi-cloud environments. However, rapid release cycles often create significant security challenges…

Read More

A Complete Overview of DevOps Support Services and Their Business Value

Introduction Running a modern software environment involves much more than writing code and releasing applications. Engineering teams must continuously manage cloud resources, deployment pipelines, containers, security controls,…

Read More

A Practical Guide to Evaluating DevOps Trainers and Training Programs

Introduction DevOps has changed considerably from being mainly associated with deployment automation and collaboration between development and operations teams. Today, engineering organizations work across cloud platforms, containers,…

Read More

Essential DataOps Testing Techniques for Reliable Modern Pipelines

Introduction The ingestion job extracted raw files and loaded them without crashing, but an upstream application updated its checkout flow. You must verify both the pipeline code…

Read More

How DataOps Improves Collaboration Across Teams in Modern Organizations

Introduction In modern organizations, data is often called the most valuable asset. Yet, the teams responsible for gathering, processing, analyzing, and acting on that data frequently operate…

Read More

Best Countries for Dental Tourism: Comparing Costs, Safety, and Quality Care

Navigating the world of international healthcare can feel overwhelming, especially when facing extensive dental work or rising domestic treatment costs. Millions of patients worldwide actively research cross-border…

Read More