+ dbt seed
15:49:17 Running with dbt=1.10.6
15:49:19 Registered adapter: databricks=1.10.8
15:49:20 Unable to do partial parsing because saved manifest not found. Starting full parse.
15:49:25 Found 27 models, 73 data tests, 1 seed, 7 sources, 68...
We recently encountered the below issue, where a databricks job configured to run a dbt task on serverless compute and warehouse failed due to python dependency failure:run failed with error message
Library installation failed: Library installation ...
We have a databricks job configured to run a dbt project. The dbt cli compute cluster being used is serverless with a serverless sql warehouse. We encountered this error during a run. SQLSTATE: XX000Any idea why this occurred?
We are running a streaming job in databricks with custom streaming logic which consumes a CDC stream from mongo and appends to a delta table, at the end of the streaming job we have a internal checkpointing logic which creates an entry into a table w...
I was expecting spark.sql(f"insert into table {internal_tab_name} values({dt})") to execute at the end after the streaming query was written to the table. What I observed:The spark sql query spark.sql(f"insert into table {internal_tab_name} values({d...