In Apache Spark, transformations such as map, filter, and reduceByKey result in the creation of new ________.

  • Actions
  • DataFrames
  • Partitions
  • RDDs
Transformations in Apache Spark, such as map, filter, and reduceByKey, generate new RDDs (Resilient Distributed Datasets) based on the input RDDs. These new RDDs represent the result of the computation and are used as input for subsequent operations.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *