Apache Spark Rdd First Talk 2

Source: Internet
Author: User
Tags spark rdd

The RDD is the most basic and fundamental data abstraction for spark, which has the fault tolerance of data flow models like MapReduce, and allows developers to perform memory-based computations on large clusters.

To effectively implement fault tolerance, the RDD (see http://www.cnblogs.com/zlslch/p/5718799.html) provides a highly restricted shared memory that the RDD is read-only and can only be created through bulk operations on other rdd.

The RDD only supports coarse-grained conversions, limiting the programming model.

But Rdd can still work well for many applications, especially for batch analytics applications that support data parallelism, including data mining, machine learning, graph algorithms, and so on, because these programs typically perform the same operations on many records.

RDD is not suitable for applications that update shared state asynchronously, such as a parallel web crawler.

As a result, the goal of Spark is to provide an effective programming model for most analytical applications, while other types of applications are given to the systems of specialists.

Apache Spark Rdd First Talk 2

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.