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

Exam Certified Associate Developer for Apache Spark All Questions

View all questions & answers for the Certified Associate Developer for Apache Spark exam

Exam Certified Associate Developer for Apache Spark topic 1 question 133 discussion

Which of the following Spark properties is used to configure whether DataFrames found to be below a certain size threshold at runtime will be automatically broadcasted?

  • A. spark.sql.broadcastTimeout
  • B. spark.sql.autoBroadcastJoinThreshold
  • C. spark.sql.shuffle.partitions
  • D. spark.sql.inMemoryColumnarStorage.batchSize
  • E. spark.sql.adaptive.localShuffleReader.enabled
Show Suggested Answer Hide Answer
Suggested Answer: B 🗳️

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
5cf7ace
5 months, 2 weeks ago
Selected Answer: B
This property is used to configure the threshold for automatically broadcasting small tables in join operations. When the size of a DataFrame is below this threshold, it will be broadcasted to all executor nodes for efficient join operations.
upvoted 1 times
...
jtu363
5 months, 4 weeks ago
Selected Answer: B
Sorry,its B, can't edit previous answer
upvoted 1 times
...
jtu363
5 months, 4 weeks ago
Selected Answer: A
spark.conf.set("spark.sql.autoBroadcastJoinThreshold", value)
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 ...