Question
Where can I find an exhaustive list of actions for spark?
I want to know exactly what I can do in spark without triggering the computation of the spark RDD/DataFrame.
It's my understanding that only actions trigger the execution of the transformations in order to produce a DataFrame. The problem is that I'm unable to find a comprehensive list of spark actions.
Spark documentation lists some actions, but it's not exhaustive. For example show is not there, but it is considered an action.
- Where can I find a full list of actions?
- Can I assume that all methods listed here are also actions?