Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-03-2025 02:44 AM
Hi @new_user_ptl Databricks does NOT support directly registering or querying Iceberg tables that use the Hadoop catalog (where metadata is stored only as files in S3 and not registered in any metastore/catalog). when use databricks sql , registering table require the table to be discoverable via catalog glue or hive etc but with hadoop catalog it is just s3 files.
You can still try readng the data using Spark directly (not via SQL), for example
spark.read.format("iceberg").load("s3://bucket/path")