
Answer-first summary for fast verification
Answer: `dbutils.fs.unmount("/mnt/mountPoint1")`
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.
Author: LeetQuiz Editorial Team
Ultimate access to all questions.
No comments yet.
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")