Valid Associate-Developer-Apache-Spark Dumps shared by EduDump.com for Helping Passing Associate-Developer-Apache-Spark Exam! EduDump.com now offer the newest Associate-Developer-Apache-Spark exam dumps, the EduDump.com Associate-Developer-Apache-Spark exam questions have been updated and answers have been corrected get the newest EduDump.com Associate-Developer-Apache-Spark dumps with Test Engine here:
Which of the following statements about broadcast variables is correct?
Correct Answer: C
Explanation Broadcast variables are local to the worker node and not shared across the cluster. This is wrong because broadcast variables are meant to be shared across the cluster. As such, they are never just local to the worker node, but available to all worker nodes. Broadcast variables are commonly used for tables that do not fit into memory. This is wrong because broadcast variables can only be broadcast because they are small and do fit into memory. Broadcast variables are serialized with every single task. This is wrong because they are cached on every machine in the cluster, precisely avoiding to have to be serialized with every single task. Broadcast variables are occasionally dynamically updated on a per-task basis. This is wrong because broadcast variables are immutable - they are never updated. More info: Spark - The Definitive Guide, Chapter 14