InterviewSolution
Saved Bookmarks
| 1. |
What is coalesce in Spark? |
|
Answer» In Spark, Coalesce is just another method for partitioning the data into a data FRAME. This is primarily used for REDUCING the number of partitions INSIDE a data frame. It is most commonly used in cases where the user WANTS to decrease the amount of partitions WITHOUT any confusion of shuffle. |
|