LeetQuiz Logo
Privacy Policy•contact@leetquiz.com
© 2025 LeetQuiz All rights reserved.
Databricks Certified Data Engineer - Professional

Databricks Certified Data Engineer - Professional

Get started today

Ultimate access to all questions.


What signs in the Spark UI's Storage tab would indicate suboptimal performance of a cached table when using the MEMORY_ONLY storage level?

Exam-Like




Explanation:

In the Spark UI's Storage tab with MEMORY_ONLY storage level, the indicators of a non-optimally cached table are:

  • B: The '*' annotation in the RDD Block Name indicates partitions that couldn't be cached due to memory constraints, leading to recomputation.
  • C: Size on Disk > 0 is unexpected for MEMORY_ONLY, as it implies data spillage to disk (which is not allowed in MEMORY_ONLY). This suggests a misconfiguration or unintended storage level usage, impacting performance.

Options A (normal for MEMORY_ONLY), D (impossible partition count), and E (irrelevant for MEMORY_ONLY) are incorrect.

Powered ByGPT-5