how can i setup iceberg in databric

Kirk Anderson 0 Reputation points
2025-04-22T15:39:29.0433333+00:00

I have a simple pay-as-you-go for learning purposes. I am trying to simulate Adobe Clickstream in Azure Databricks and furthermore trying to create an Iceberg table under Unity Catalog. Tried to utilize assisted AI to accomplish goal to no avail.

I have a feeling Iceberg not available in my current workspace configuration. How can i do this on the cheap? - have had no success. thank you

Azure Databricks
Azure Databricks
An Apache Spark-based analytics platform optimized for Azure.
2,413 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Azar 28,000 Reputation points MVP
    2025-04-22T17:41:31.1266667+00:00

    Hi there Kirk Anderson

    Thanks for using QandA platform

    guess you are right, Iceberg with Unity Catalog needs a Unity-enabled workspace and DBR 13.1+. On a pay-as-you-go plan, check that your metastore is set up and attached.

    Try this to create an Iceberg table

    CREATE TABLE catalog.schema.table_name (
      user_id STRING,
      event_time TIMESTAMP,
      page_url STRING
    ) USING ICEBERG;
    

    Use a single-node cluster with Unity Catalog enabled to keep costs low. If Unity Catalog isn’t showing, your workspace might not support it yet.

    If this helps kindly accept the answer thanks much.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.