My team has a production pipeline running in Azure Databricks using PySpark. This pipeline is automated and has been running for months with zero issues. Recently it has broken because I can no longer use certain read/write to files in a mounted blob storage account. No changes have been to the code or environment during this time so it is unclear why it has suddenly broken.
Spark read/write operations such as "sc.textFile()" work perfectly well as before.
However standard Pythonic operations such as "open()" now always throw the error "FileNotFoundError: [Errno 2] No such file or directory" when the files definitely exist and could always be read fine before.
Please advise how to fix this.