What are the types of Transformation in Spark RDD Operations?
Answer Posted / Sureena Yadav
There are two main types of transformations in Apache Spark RDD operations: Transformations that create a new dataset without affecting the original data (e.g., map, filter, flatMap) and Actions that return a value to the driver program after computing on the data (e.g., count, collect, saveAsTextFile).
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers