On creating temporary in-memory table using createOrReplaceTempView
,
how and where is the in-memory temporary table stored in the nodes?
Is the whole table created in each and every worker nodes or master node? Or Is the data partitioned and distributed across across all cluster nodes?
Finally is it a good idea to load a huge table with 100 million+ records in memory using createOrReplaceTempView
?