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

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

A 'transactions' table has been liquid clustered on the columns 'product_id’, ’user_id' and 'event_date'.

Which operation lacks support for cluster on write?

  • A. CTAS and RTAS statements
  • B. spark.writeStream.format(’delta').mode(’append’)
  • C. spark.write.format('delta’).mode('append')
  • D. INSERT INTO operations
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
_Lukas_
7 hours, 35 minutes ago
Selected Answer: B
Correct: B - Structured Streaming operations using spark.writeStream.format('delta').mode('append') do NOT support cluster on write by default. To enable clustering on write for streaming workloads, you must explicitly set the Spark configuration spark.databricks.delta.liquid.eagerClustering.streaming.enabled to true. Without this configuration flag, streaming writes bypass the automatic clustering optimization that other operations receive.
upvoted 1 times
...
Ral17
1 day, 2 hours ago
Selected Answer: B
This should be B. Only writeStream lacks support for liquid cluster
upvoted 1 times
...
a68856c
5 days ago
Selected Answer: B
https://docs.databricks.com/aws/en/delta/clustering#operations-that-support-clustering-on-write . By default writeStream does not support liquid cluster.
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 ...