关注 spark技术分享,
撸spark源码 玩spark最佳实践

CoalesceExec

CoalesceExec Unary Physical Operator

CoalesceExec is a unary physical operator (i.e. with one child physical operator) to…​FIXME…​with numPartitions number of partitions and a child spark plan.

CoalesceExec represents Repartition logical operator at execution (when shuffle was disabled — see BasicOperators execution planning strategy). When executed, it executes the input child and calls coalesce on the result RDD (with shuffle disabled).

Please note that since physical operators present themselves without the suffix Exec, CoalesceExec is the Coalesce in the Physical Plan section in the following example:

output collection of Attribute matches the child‘s (since CoalesceExec is about changing the number of partitions not the internal representation).

outputPartitioning returns a SinglePartition when the input numPartitions is 1 while a UnknownPartitioning partitioning scheme for the other cases.

赞(0) 打赏
未经允许不得转载:spark技术分享 » CoalesceExec
分享到: 更多 (0)

关注公众号:spark技术分享

联系我们联系我们

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

微信扫一扫打赏