Actions

Actions in Spark return values to the Spark driver program. They are typically the final step in a Spark program. Recall that with lazy evaluation, the complete set of Spark transformations in a program are only processed when an action is requested.

Last updated