Spark Data Structures
We need to deal with 2 types of data structures in Spark – RDD and Data Frames. We will see both in detail as we proceed further. RDD is there for quite some time and it is the low-level data structure which spark uses to distribute the data between tasks while data is being processed. …