Exam Certified Data Engineer Professional All QuestionsBrowse all questions from this exam
Question 126

Assuming that the Databricks CLI has been installed and configured correctly, which Databricks CLI command can be used to upload a custom Python Wheel to object storage mounted with the DBFS for use with a production job?

    Correct Answer: B

    The correct command to interact with DBFS for uploading a custom Python Wheel is 'fs'. The 'fs' command allows you to perform various file system operations on DBFS (Databricks File System), such as copying files to and from DBFS, listing files, and deleting files. 'configure' is used for setting up the CLI, 'workspace' for working with workspace directories and notebooks, and 'libraries' for managing libraries, but none of these directly handle file system operations on DBFS.

Discussion
vexor3Option: B

B is correct