Answer Posted / Preeti Arya
"In Apache Spark, a transformation is an operation that takes an RDD and converts it into another RDD. Transformations are lazy - they do not actually execute the RDD until an action (like count(), collect(), or saveAsTextFile()) is called. Some common transformations include map(), filter(), flatMap(), reduceByKey(), and join().".
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers