ManojkMohan
Honored Contributor II

Issue Encountered:
Received the following error when attempting to run Delta Live Tables (DLT) code:

"The Delta Live Tables (DLT) module is not supported on this cluster. You should either create a new pipeline or use an existing pipeline to run DLT code."

Short-Term Workaround (Bronze Table):
To proceed without DLT, used standard Delta Lake APIs:

 

raw_df.write.format("delta").mode("overwrite").saveAsTable("bronze.ipl_raw") df = spark.read.table("bronze.ipl_raw")
 
Now trying a prototype with DLT pipeline