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 228 discussion

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

A data engineer has created a 'transactions' Delta table on Databricks that should be used by the analytics team. The analytics team wants to use the table with another tool which requires Apache Iceberg format.

What should the data engineer do?

  • A. Require the analytics team to use a tool which supports Delta table.
  • B. Create an Iceberg copy of the 'transactions' Delta table which can be used by the analytics team.
  • C. Convert the 'transactions' Delta to Iceberg and enable uniform so that the table can be read as a Delta table.
  • D. Enable uniform on the transactions table to 'iceberg' so that the table can be read as an Iceberg table.
Show Suggested Answer Hide Answer
Suggested Answer: D 🗳️

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
_Lukas_
8 hours, 3 minutes ago
Selected Answer: D
Correct: D - This is the proper approach using Delta Lake UniForm. By setting the table property 'delta.universalFormat.enabledFormats' = 'iceberg' (along with 'delta.enableIcebergCompatV2' = 'true'), the Delta table automatically generates Iceberg metadata asynchronously. The table remains a fully functional Delta table for the data engineer, while Iceberg clients used by the analytics team can read it as if it were a native Iceberg table, all without duplicating data.
upvoted 1 times
...
Ral17
1 day, 2 hours ago
Selected Answer: D
UniForm is specifically designed for this exact scenario — enabling interoperability between Delta Lake and other formats (Iceberg, Hudi) without abandoning Delta's advantages.
upvoted 1 times
...
6aa83ae
4 days, 5 hours ago
Selected Answer: D
https://docs.databricks.com/aws/en/delta/uniform You must set the following table properties to enable Iceberg reads: 'delta.enableIcebergCompatV2' = 'true' 'delta.universalFormat.enabledFormats' = 'iceberg'
upvoted 2 times
...
a68856c
5 days, 1 hour ago
Selected Answer: D
Enable Uniform in the Delta table allows to read it as an Iceberg table. A single copy of the data files serves multiple formats. https://docs.databricks.com/aws/en/delta/uniform
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 ...