spark算子-coalesce算子

完整代码

  /**
   * 返回一个新的RDD,它被缩减为numPartitions分区。
   * Return a new RDD that is reduced into `numPartitions` partitions.
   *
   * 这就导致了一个狭窄的依赖,例如,如果你从1000个分区到100个分区,不会有一个转移,
   * 而是每100个新分区将占用10个当前分区。如果请求的分区数量更大,则会保持当前的分
   * 区数量。
   * This results in a narrow dependency, e.g. if you go from 1000 partitions
   * to 100 partitions, there will not be a shuffle, instead each of the 100
   * new partitions will claim 10 of the current partitions. If a larger number
   * of partitions is requested, it will stay at the current number of partitions.
   *
   * 然而,如果你正在做一个激烈的合并,例如numPartitions = 1,这可能会导致你的计算发生
   * 在比你希望的更少的节点上(例如,在numPartitions = 1的情况下只有一个节点)。为了避免
   * 这种情况,你可以传递shuffle = true。这将增加一个shuffle步骤,但意味着当前上游分区
   * 将并行执行(无论当前分区是什么)。
   * However, if you're doing a drastic coalesce, e.g. to numPartitions = 1,
   * this may result in your computation taking place on fewer nodes than
   * you like (e.g. one node in the case of numPartitions = 1). To avoid this,
   * you can pass shuffle = true. This will add a shuffle step, but means the
   * current upstream partitions will be executed in parallel (per whatever
   * the current partitioning is).
   *
   * 注意:
   * 使用shuffle = true,实际上可以合并到更多的分区。如果您有少量的分区(比如100个),并
   * 且可能有几个分区异常大,那么这很有用。调用coalesce(1000, shuffle = true)将产生
   * 1000个分区,数据使用散列分区器分布。传入的可选分区合并器必须是可序列化的。
   * @note With shuffle = true, you can actually coalesce to a larger number
   * of partitions. This is useful if you have a small number of partitions,
   * say 100, potentially with a few partitions being abnormally large. Calling
   * coalesce(1000, shuffle = true) will result in 1000 partitions with the
   * data distributed using a hash partitioner. The optional partition coalescer
   * passed in must be serializable.
   */
  def coalesce(numPartitions: Int, shuffle: Boolean = false,
               partitionCoalescer: Option[PartitionCoalescer] = Option.empty)
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值