0 votes
in Apache Flume by
What is the need for broadcast variables in Spark?

1 Answer

0 votes
by
Broadcast variables allow the programmer to keep a read-only variable cached on each machine rather than shipping a copy of it with tasks. They can be used to give every node a copy of a large input dataset in an efficient manner. Spark distributes broadcast variables using efficient broadcast algorithms to reduce communication costs.

scala

scala> val broadcastVar = sc.broadcast(Array(1, 2, 3))

broadcastVar: org.apache.spark.broadcast.Broadcast[Array[Int]] = Broadcast(0)

scala> broadcastVar.value

res0: Array[Int] = Array(1, 2, 3)

So far, if you have any doubts regarding the spark interview questions for beginners, please ask in the comment section below.

Moving forward, let us understand the spark interview questions for experienced candidates

Related questions

+1 vote
asked Sep 16, 2022 in Spark Preliminaries by sharadyadav1986
0 votes
asked Aug 25, 2022 in Apache Spark by sharadyadav1986
...