Databricks - dbfs:/mnt/ Azure 数据工厂中的问题
Databricks - dbfs:/mnt/ question in Azure Data Factory
我是 Azure 数据工厂中 Databricks 的新手。
现在我们得到了一个只包含一个 python activity 的管道。如您所见,有一个显示此内容的动态文件位置:@concat('dbfs:/mnt/folder1/folder2/',pipeline().parameters.Input.pythonFile,'.py')
我的问题是,这个位置 dbfs:/mnt 到底是什么。我如何检查它指向的位置。
我试着关注这篇文章:
https://docs.gcp.databricks.com/data/databricks-file-system.html#special-dbfs-root-locations
但是我没有看到它提到的 DBFS 选项卡。
/mnt/<something>
是人们通常挂载 DBFS 根文件系统之外的外部存储帐户的地方。您可以使用在 Databricks 笔记本中执行的 dbutils.fs.mounts()
命令找到它指向的存储(请参阅 docs)
我是 Azure 数据工厂中 Databricks 的新手。 现在我们得到了一个只包含一个 python activity 的管道。如您所见,有一个显示此内容的动态文件位置:@concat('dbfs:/mnt/folder1/folder2/',pipeline().parameters.Input.pythonFile,'.py')
我的问题是,这个位置 dbfs:/mnt 到底是什么。我如何检查它指向的位置。
我试着关注这篇文章:
https://docs.gcp.databricks.com/data/databricks-file-system.html#special-dbfs-root-locations
但是我没有看到它提到的 DBFS 选项卡。
/mnt/<something>
是人们通常挂载 DBFS 根文件系统之外的外部存储帐户的地方。您可以使用在 Databricks 笔记本中执行的 dbutils.fs.mounts()
命令找到它指向的存储(请参阅 docs)