专用词汇
Transformations操作
rdd={(1,2),(3,4),(3,6)} other={(3,9)}
rdd.join(other) ={(3,(4,9)),(3,(6,9))}
rdd.cogroup(other)={(1,([2],[])),(3,([4,6],[9]))}
Action操作
专用词汇
Transformations操作
rdd={(1,2),(3,4),(3,6)} other={(3,9)}
rdd.join(other) ={(3,(4,9)),(3,(6,9))}
rdd.cogroup(other)={(1,([2],[])),(3,([4,6],[9]))}
Action操作