Forum Discussion
Error Encountered When Copying Data from Bronze to Silver Lakehouse Using Dataflow Gen2
- 7 months ago
I am using a pipeline as an alternative. I haven't figured out the root cause of the issue. Thanks
- 6 months ago
The issue with the DF Gen2 integration has been resolved. The data source configuration should use the SQL connection string rather than the Lakehouse connector. After updating the data source to use the SQL connection string, all processes tested successfully.
Hi ,
it seems to me there might be an issue with the DeltaTable snapshot (as stated in the error message).
Try these:
In a notebook attached to the same lakehouse as the Dataflow source:
spark.sql("DESCRIBE HISTORY your_table_name").show()
If this fails → the Delta log is broken.
Then rebuild the table: delete the table first and then recreate it (via notebook or your dataflow).
Best regards!
PS: If you find this helpful, consider leaving kudos or mark it as solution.