0 votes
in Spark Preliminaries by
What does RDD mean?

1 Answer

0 votes
by

Resilient Distributed Datasets is the name of Spark's primary abstraction. Resilient Distributed Datasets are pieces of data that are split up and have these qualities. The most popular RDD properties are immutable, distributed, lazy evaluation, and catchable.

...