Forum Discussion
MarouaneB
10 months agoNew Member
The Delta table uses the 'v2Checkpoint' feature, which is not supported : Azure Databricks to Fabric
Hello everyone, I’m trying to shortcut/mirror several Delta tables from Azure Databricks to Microsoft Fabric. These tables have the checkpoint feature enabled, and Fabric fails with the following...
- 10 months ago
- If the table is already created with v2Checkpoint, consider rewriting or exporting the data into a new Delta table using the classic checkpoint format (JSON).
You can enforce classic checkpoints in Databricks by setting:
spark.conf.set("spark.databricks.delta.checkpoint.writeFormat", "json")
MarouaneB
10 months agoNew Member
Hello, This is clear, thank you for your help.