What are the Spark transformations that causes a Shuffle?

后端 未结 4 1388
情书的邮戳
情书的邮戳 2020-11-29 22:55

I have trouble to find in the Spark documentation operations that causes a shuffle and operation that does not. In this list, which ones does cause a shuffle and which ones

4条回答
  •  Happy的楠姐
    2020-11-29 23:31

    It is actually extremely easy to find this out, without the documentation. For any of these functions just create an RDD and call to debug string, here is one example you can do the rest on ur own.

    scala> val a  = sc.parallelize(Array(1,2,3)).distinct
    scala> a.toDebugString
    MappedRDD[5] at distinct at :12 (1 partitions)
      MapPartitionsRDD[4] at distinct at :12 (1 partitions)
        **ShuffledRDD[3] at distinct at :12 (1 partitions)**
          MapPartitionsRDD[2] at distinct at :12 (1 partitions)
            MappedRDD[1] at distinct at :12 (1 partitions)
              ParallelCollectionRDD[0] at parallelize at :12 (1 partitions)
    

    So as you can see distinct creates a shuffle. It is also particularly important to find out this way rather than docs because there are situations where a shuffle will be required or not required for a certain function. For example join usually requires a shuffle but if you join two RDD's that branch from the same RDD spark can sometimes elide the shuffle.

提交回复
热议问题