0 votes
in Spark Sql by
What is Action in Spark?

1 Answer

0 votes
by

Actions return final results of RDD computations. It triggers execution using lineage graph and after carry out all intermediate transformations return the final results to the Driver.

...