implicit final class PartitionerAwareUnionRDD2Ops[T] extends AnyVal
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- PartitionerAwareUnionRDD2Ops
- AnyVal
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
- new PartitionerAwareUnionRDD2Ops(rdd: RDD[T])
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- Any
-
final
def
##(): Int
- Definition Classes
- Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
toString(): String
- Definition Classes
- Any
-
def
union2(other: RDD[T])(implicit tag: ClassTag[T]): RDD[T]
Return the union of this RDD and another one.
Return the union of this RDD and another one. Any identical elements will appear multiple times (use
.distinct()
to eliminate them).- Note
this is a custom version to avoid the exponential behavior of Spark when multiple
PartitionerAwareUnionRDD
s appear in a large DAG branch.