Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-11-2023 06:46 PM - edited 07-11-2023 07:17 PM
Hello @TheoDeSo , just simply rewrite the configuration:
spark.conf.set("fs.azure.account.key.{storage_account}.dfs.core.windows.net", "{myStorageAccountKey}")
use this uri to access the storage account: abfss://{container_name}@{storage_account}.dfs.core.windows.net/
You can check using: dbutils.fs.ls(" abfss://{container_name}@{storage_account}.dfs.core.windows.net/")
Hemant Soni