@Rahul Samant :
The error message you're seeing suggests that Power BI is having trouble accessing the checkpoint file for your Delta table when using the serverless SQL endpoint. This file is used by Delta to track changes to the table and ensure consistency, and is typically located in the _delta_log subdirectory of your table's mount point.
The issue can be that the table was created or modified outside of Power BI or if there was an issue with the mount point or Delta configuration.
To troubleshoot this issue, you could try the following steps:
- Check that the mount point for your Delta table is correctly configured and accessible from Power BI. You can do this by navigating to the "Data sources" section of your Power BI workspace and verifying that the mount point is listed and connected.
- Check that the _delta_log directory and checkpoint file are present in the mount point. You can do this by using the Databricks CLI or the Databricks file browser to navigate to the mount point and inspect the directory structure.
- If the _delta_log directory or checkpoint file are missing or inaccessible, you may need to recreate the Delta table or restore it from a backup.
- If the issue persists, you may need to investigate further by reviewing the logs and configurations for your Delta table and mount point, or by contacting Databricks support for assistance.