在 Azure Databricks 上,我如何知道安装了哪个 blob 存储

On Azure Databricks how can I tell which blob store is mounted

我继承了一个笔记本,它使用以下语法写入已安装的 Azure blob 存储:

instrumentDf.write.json('/mnt/blobdata/cosmosdata/instrumentjson')

如何找到它写入的 Azure blob 存储的名称?

谢谢!

您可以用于此目的:

dbutils.fs.mounts()

这列出了挂载点和源。