I would like to understand in which node (driver or worker/executor) does below code is stored
df.cache() //df is a large dataframe (200GB)
And which has a better performance: using sql cachetable or cache(). My understanding is that one of them is lazy and the other is eager.
