92.2k views
1 vote
What operations does RDD support?

a. Map, Filter, and Reduce
b. Insert, Update, and Delete
c. Sort, Join, and Group By
d. Compile, Execute, and Debug

User Yes Barry
by
8.6k points

1 Answer

4 votes

Final answer:

RDD supports operations such as Map, Filter, and Reduce.

Step-by-step explanation:

RDD (Resilient Distributed Datasets) is a fundamental data structure in Apache Spark, a distributed computing system. RDD supports operations such as Map, Filter, and Reduce.

The Map operation allows you to apply a given function to each element in the RDD and create a new RDD. The Filter operation allows you to select elements from the RDD based on a condition. The Reduce operation combines all the elements of the RDD using a specific function and returns a single value.

User Stephen J Barker
by
8.2k points