Dear Wiki user, You have subscribed to a wiki page or wiki category on "Pig Wiki" for change notification.
The following page has been changed by CorinneC: http://wiki.apache.org/pig/PigUserCookbook ------------------------------------------------------------------------------ {{{ tiny = load 'small_file' as (t, u, v); large = load 'large_file' as (x, y, z); - C = join big by t, tiny by x using "replicated"; + C = join large by x, tiny by t using "replicated"; }}} Note that the large table must come first followed by one or more small tables. All small tables together must fit into main memory.
