join(otherDataset, [numTasks]) |
When called on datasets of type (K, V) and (K, W), returns a dataset of (K, (V, W)) pairs with all pairs of elements for each key.
- Outer joins are also supported through leftOuterJoin and rightOuterJoin .
+ Outer joins are supported through leftOuterJoin , rightOuterJoin , and fullOuterJoin .
|