BlackFriday 2024! Hurry Up, Grab the Special Discount - Save 25% - Ends In 00:00:00 Coupon code: SAVE25
Welcome to Pass4Success

- Free Preparation Discussions

Databricks Exam Databricks-Certified-Associate-Developer-for-Apache-Spark-3.0 Topic 3 Question 56 Discussion

Actual exam question for Databricks's Databricks-Certified-Associate-Developer-for-Apache-Spark-3.0 exam
Question #: 56
Topic #: 3
[All Databricks-Certified-Associate-Developer-for-Apache-Spark-3.0 Questions]

The code block displayed below contains one or more errors. The code block should load parquet files at location filePath into a DataFrame, only loading those files that have been modified before

2029-03-20 05:44:46. Spark should enforce a schema according to the schema shown below. Find the error.

Schema:

1. root

2. |-- itemId: integer (nullable = true)

3. |-- attributes: array (nullable = true)

4. | |-- element: string (containsNull = true)

5. |-- supplier: string (nullable = true)

Code block:

1. schema = StructType([

2. StructType("itemId", IntegerType(), True),

3. StructType("attributes", ArrayType(StringType(), True), True),

4. StructType("supplier", StringType(), True)

5. ])

6.

7. spark.read.options("modifiedBefore", "2029-03-20T05:44:46").schema(schema).load(filePath)

Show Suggested Answer Hide Answer
Suggested Answer: D

Correct code block:

schema = StructType([

StructField('itemId', IntegerType(), True),

StructField('attributes', ArrayType(StringType(), True), True),

StructField('supplier', StringType(), True)

])

spark.read.options(modifiedBefore='2029-03-20T05:44:46').schema(schema).parquet(filePath)

This Question: is more difficult than what you would encounter in the exam. In the exam, for this Question: type, only one error needs to be identified and not 'one or multiple' as in the

question.

Columns in the schema definition use the wrong object type, the modification date threshold is specified incorrectly, and Spark cannot identify the file format.

Correct! Columns in the schema definition should use the StructField type. Building a schema from pyspark.sql.types, as here using classes like StructType and StructField, is one of multiple ways

of expressing a schema in Spark. A StructType always contains a list of StructFields (see documentation linked below). So, nesting StructType and StructType as shown in the Question: is

wrong.

The modification date threshold should be specified by a keyword argument like options(modifiedBefore='2029-03-20T05:44:46') and not two consecutive non-keyword arguments as in the original

code block (see documentation linked below).

Spark cannot identify the file format correctly, because either it has to be specified by using the DataFrameReader.format(), as an argument to DataFrameReader.load(), or directly by calling, for

example, DataFrameReader.parquet().

Columns in the schema are unable to handle empty values and the modification date threshold is specified incorrectly.

No. If StructField would be used for the columns instead of StructType (see above), the third argument specified whether the column is nullable. The original schema shows that columns should be

nullable and this is specified correctly by the third argument being True in the schema in the code block.

It is correct, however, that the modification date threshold is specified incorrectly (see above).

The attributes array is specified incorrectly, Spark cannot identify the file format, and the syntax of the call to Spark's DataFrameReader is incorrect.

Wrong. The attributes array is specified correctly, following the syntax for ArrayType (see linked documentation below). That Spark cannot identify the file format is correct, see correct answer

above. In addition, the DataFrameReader is called correctly through the SparkSession spark.

Columns in the schema definition use the wrong object type and the syntax of the call to Spark's DataFrameReader is incorrect.

Incorrect, the object types in the schema definition are correct and syntax of the call to Spark's DataFrameReader is correct.

The data type of the schema is incompatible with the schema() operator and the modification date threshold is specified incorrectly.

False. The data type of the schema is StructType and an accepted data type for the DataFrameReader.schema() method. It is correct however that the modification date threshold is specified

incorrectly (see correct answer above).


Contribute your Thoughts:

Tiera
5 months ago
This question is a total mess. I'm just going to guess C and hope for the best. At least they didn't ask about Hadoop this time!
upvoted 0 times
...
Brigette
5 months ago
Haha, they really threw in a lot of issues here! I'm going to go with D - the schema, file format, and date threshold all seem problematic.
upvoted 0 times
Elvis
5 months ago
Yeah, I agree. It seems like there are multiple problems with the code block.
upvoted 0 times
...
Bonita
5 months ago
Yeah, it does seem like there are multiple issues with the code block.
upvoted 0 times
...
Jestine
5 months ago
I think D is the correct option. The schema, file format, and date threshold all have issues.
upvoted 0 times
...
Brandon
5 months ago
It looks like there are multiple issues with the code block.
upvoted 0 times
...
Desiree
5 months ago
I think D is the correct option, the schema, file format, and date threshold all seem problematic.
upvoted 0 times
...
Barrett
5 months ago
Yeah, and the modification date threshold is also incorrect.
upvoted 0 times
...
Rory
5 months ago
Yeah, it seems like there are multiple problems with the code block. D makes sense.
upvoted 0 times
...
Stefanie
5 months ago
I think the schema definition and file format are both wrong.
upvoted 0 times
...
Steffanie
5 months ago
I think D is the correct option. The schema, file format, and date threshold all have issues.
upvoted 0 times
...
...
Chan
6 months ago
The schema definition looks off, and the modifiedBefore option seems to be the wrong syntax. I'm going with B.
upvoted 0 times
...
Celestina
6 months ago
The attributes array is definitely specified incorrectly. Spark won't be able to handle that.
upvoted 0 times
Alton
5 months ago
B
upvoted 0 times
...
Vincent
5 months ago
D
upvoted 0 times
...
Laquanda
5 months ago
A
upvoted 0 times
...
Rozella
5 months ago
B
upvoted 0 times
...
Marti
6 months ago
A
upvoted 0 times
...
...

Save Cancel