0 votes
in Apache Spark by
What do you understand by Spark map() Transformation?

1 Answer

0 votes
by

Spark map() is a transformation operation used to apply the Transformation on every element of RDD, DataFrame, and Dataset and finally returns a new RDD/Dataset, respectively.

...