With dbt Cloud, how can I specifiy a “catalog” value so the materialised table is written into a desired Databricks Unity Catalog?
I tried the following in a model SQL but it still wrote the table into the default “hive_metastore” instead of the desired ‘main’ catalog:
{{config(
materialized=‘table’,
catalog=‘main’,
schema='dbt_abc,
file_format=‘delta’,
location_root=‘abfss://some_values’
)}}
Update (2022-11-08 21:30 UTC): is it becasue “dbt-databricks” adapter does not yet support “DBT Cloud”? If so, does anyone know when it will be available in “DBT Cloud”?