sown
sown

Reputation: 23

Azure Databricks - notebook not found exception

For data ingestion we have delta live tables which helps us update data.

A workflow that runs a delta live table job to perform data ingestion.

I am getting this error saying unable to load notebook, but I don't understand why that is the case given that the notebook is in same loc as mentioned. Kindly advise.

This delta live table pipeline was built by ex-coworker and run as section still shows their name. Could that be the reason for pipeline failing?

enter image description here

Upvotes: -1

Views: 64

Answers (1)

Pratik Lad
Pratik Lad

Reputation: 8402

enter image description here

I have also got the similar error but for me the reason was notebook mistakenly moved to the trash folder and pipeline is not getting the notebook at exact location

As per the error image you shared in the path of source notebook, we can see there is additional spaces in start and last of notebook path, this extra spaces might cause the problem.

Also, there are some other reasons might cause this error.

  • Paths in Databricks are case-sensitive. Verify the casing of folder and file name.
  • The notebook or folder may have restricted permissions, which would prevent you or the pipeline service from accessing it.
  • Ensure the user or service principal running the pipeline has the required permissions.

Upvotes: 1

Related Questions