Azure Blob Storage
An Azure service that stores unstructured data in the cloud as blobs.
3,200 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hello everyone,
I'm trying to mount blob storage using the below syntax ,but failing to mount saying invalid source.
Any help would be appreciated.
Tried different solutions like unmount /mnt and remount
1.
dbutils.fs.unmount("/mnt")
'dbutils.fs.mount(source='wasbs://
Another possibility is that the same container has been mounted to two different paths in the workspace. Unmounting all and remounting might resolve the issue. You can unmount all mounts beginning with /mnt/ with the following code:
print('Unmounting all mounts beginning with /mnt/')
for mount in dbutils.fs.mounts():
if mount.mountPoint.startswith('/mnt/'):
dbutils.fs.unmount(mount.mountPoint)
print('Re-listing all mounts')
dbutils.fs.mounts()