Explain briefly what is Action in Apache Spark? How is final result generated using an action?
Answer Posted / Suman Yadav
{"Action": "An action causes the RDD to be computed (i.e., evaluated) and the result of the computation is materialized. Actions are blocking operations, meaning they wait for all tasks related to the computation to complete before returning a final result."n"result": "The final result is generated using an action by triggering it on an RDD or DStream. The returned value represents the aggregated output of the specified transformation(s) on the input dataset.""}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers