
Explanation:
The correct command to unmount a mount point in Databricks is dbutils.fs.unmount(). This command is specifically designed for unmounting operations within the Databricks environment. For more information, refer to the Databricks documentation on unmounting.
Ultimate access to all questions.
A data engineer needs to unmount a mount point located at /mnt/mountPoint1 in Databricks. Which command should they use?
A
dbutils.widgets("/mnt/mountPoint1")
B
dbutils.unmount("/mnt/mountPoint1")
C
dbutils.fs.unmount("/mnt/mountPoint1")
D
dbutils.mount.unmount("/mnt/mountPoint1")
E
dbutils.remove_mount("/mnt/mountPoint1")
No comments yet.