Reputation: 161
This question is pretty straightforward. Seems like in DLT, you can define the output table name like below:
@dlt.table(name="my_table_name")
def my_pipeline():
...
This writes to the hive_metastore catalog, but how do I customize it for a different catalog?
Upvotes: 6
Views: 2786
Reputation: 87174
As of right now (august 2022), DLT doesn't support Unity Catalog yet. It should be available in the near future.
Update June 2023rd: DLT started to support Unity Catalog since April 2023rd.
P.S. You can join Databricks quarterly roadmap webinar if you want to get latest updates about newer features
Upvotes: 4