MultipleChoice
A nightly job ingests data into a Delta Lake table using the following code:
The next step in the pipeline requires a function that returns an object that can be used to manipulate new records that have not yet been processed to the next table in the pipeline.
Which code snippet completes this function definition?
A) def new_records():
B) return spark.readStream.table('bronze')
C) return spark.readStream.load('bronze')
D) return spark.read.option('readChangeFeed', 'true').table ('bronze')
E)
OptionsMultipleChoice
A Delta Lake table representing metadata about content from user has the following schema:
Based on the above schema, which column is a good candidate for partitioning the Delta Table?
Options