Utility for doing map side joins on a common key between two PTables.
A map side join is an optimized join which doesn't use a reducer; instead,
the right side of the join is loaded into memory and the join is performed in
a mapper. This style of join has the important implication that the output of
the join is not sorted, which is the case with a conventional (reducer-based)
join.