InterviewSolution
Saved Bookmarks
| 1. |
What are the actions in Spark? |
|
Answer» In Spark, Actions are RDD’s operation WHOSE value RETURNS back to the spark driver programs which then kick off a job to be executed in a cluster. REDUCE, Collect, Take, saves Textfile are common examples of actions in APACHE Spark. |
|