RDDBarrier¶
RDDBarrier is a wrapper around RDD with two custom map transformations:
Unlike regular RDD.mapPartitions transformations, RDDBarrier transformations create a MapPartitionsRDD with isFromBarrier flag enabled.
RDDBarrier (of T records) marks the current stage as a barrier stage in Barrier Execution Mode.
Creating Instance¶
RDDBarrier takes the following to be created:
- RDD (of
Trecords)
RDDBarrier is created when:
- RDD.barrier transformation is used