The difference between RDD and DSM

Source: Internet
Author: User

The RDD (resilient distributed DataSet) elastic distributed data set is the core data structure of spark.

DSM (distributed shared memory) is a common memory data abstraction. In DSM, applications can read and write to any location in the global address space.

The main difference between RDD and DSM is that not only can the RDD be created by bulk conversion (i.e. "write"), but it can also be written to any memory location. Rdd restricts the application to perform bulk write operations, which facilitates effective fault tolerance. In particular, because Rdd can use lineage (descent) to recover a partition, there is basically no checkpoint overhead. Failure only requires recalculation of the lost RDD partitions, which can be executed in parallel on different nodes without the need to roll back the entire program.

The RDD model has two advantages over DSM. First, for bulk operations in the RDD, the runtime Dispatches tasks based on where the data resides, improving performance. Second face with scan type operation, if memory is not sufficient to cache the entire RDD, a partial cache is made to store partitions that are not fit for memory on disk.

The RDD also supports coarse-grained and fine-grained read operations. Many of the function operations on the RDD, such as count and collect, are bulk read operations that scan the entire data set and can assign tasks to the node closest to the data. Also, the RDD supports fine-grained operations that perform keyword lookups on the rdd of a hash or range partition.

The difference between RDD and DSM

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.