Main Content
join
Class: matlab.compiler.mlspark.RDD
Namespace: matlab.compiler.mlspark
Return an RDD containing all pairs of elements with matching keys
Syntax
result =
join(obj1,obj2,numPartitions)
Description
performs
an inner join on result
=
join(obj1
,obj2
,numPartitions
)obj1
and obj2
and
returns an RDD result
of
key-value pairs containing all pairs of elements with matching keys
in the input RDDs. obj1
and obj2
must
be key-value pair RDDs. numPartitions
specifies
the number of partitions to create in the resulting RDD.
Input Arguments
Output Arguments
Examples
Version History
Introduced in R2016b
See Also
fullOuterJoin
| leftOuterJoin
| rightOuterJoin
| collect
| parallelize