Welcome to ExamTopics
ExamTopics Logo
- Expert Verified, Online, Free.
exam questions

Exam Certified Data Engineer Professional All Questions

View all questions & answers for the Certified Data Engineer Professional exam

Exam Certified Data Engineer Professional topic 1 question 68 discussion

Actual exam question from Databricks's Certified Data Engineer Professional
Question #: 68
Topic #: 1
[All Certified Data Engineer Professional Questions]

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?

  • A. configure
  • B. fs
  • C. jobs
  • D. libraries
  • E. workspace
Show Suggested Answer Hide Answer
Suggested Answer: B 🗳️

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
arik90
8 months ago
Selected Answer: B
databricks fs cp dist/<…>.whl dbfs:/some/place/appropriate
upvoted 3 times
...
Curious76
9 months ago
Selected Answer: D
Here's how you can use the libraries command to upload your wheel: Bash databricks libraries upload --file <path_to_wheel_file> --name <library_name>
upvoted 1 times
...
ojudz08
9 months, 2 weeks ago
Selected Answer: C
this is a bit tricky, question is asked to upload custom Python Wheel, you can use fs command, but since it'll be used in production job, job command might be needed to perform databricks jobs operations? https://docs.databricks.com/en/dev-tools/cli/commands.html
upvoted 1 times
...
Somesh512
10 months ago
Selected Answer: B
Its asking to upload to DBFS and not install on cluster
upvoted 2 times
...
petrv
12 months ago
Selected Answer: B
the question is about copying the file not about installing.
upvoted 3 times
...
Enduresoul
1 year ago
Selected Answer: B
Answer B is corrent: "... which Databricks CLI command can be used to upload a custom Python Wheel to object storage mounted with the DBFS ..." The question asks, how to upload the wheel. Not install it or configure it in a job. https://docs.databricks.com/en/archive/dev-tools/cli/dbfs-cli.html
upvoted 4 times
...
aragorn_brego
1 year ago
Selected Answer: B
The Databricks CLI fs command is used for interacting with the Databricks File System (DBFS). You can use it to put files into DBFS, which includes uploading custom Python Wheels to a directory in DBFS. The fs command has subcommands like cp that can be used to copy files from your local file system to DBFS, which is backed by an object storage mounted with dbutils.fs.mount(). databricks fs cp my_package.whl dbfs:/mnt/my-mount-point/my_package.whl
upvoted 2 times
...
mouad_attaqi
1 year, 1 month ago
Selected Answer: D
It is done using the command: databricks libraries install
upvoted 1 times
...
sturcu
1 year, 1 month ago
Selected Answer: D
you can add a library section to the jobs command, but you can install a wheel with the library command
upvoted 1 times
sturcu
1 year, 1 month ago
/api/2.0/libraries/install
upvoted 1 times
...
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...