Skip to content
This repository has been archived by the owner on Feb 7, 2020. It is now read-only.

Commit

Permalink
Fixed to match what people are expecting after reading tutorials.
Browse files Browse the repository at this point in the history
  • Loading branch information
cloudjunky committed Mar 29, 2013
1 parent 1b2fbc8 commit 3bc7d6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pig/examples/binning.pig
Expand Up @@ -58,5 +58,5 @@ bw_summary = FOREACH bw_grouped GENERATE group, SUM(packets.ip_total_length) AS
joined = JOIN tcp_summary BY group, udp_summary BY group, bw_summary BY group;
summary = FOREACH joined GENERATE tcp_summary::group, tcp_len, udp_len, bw;

ILLUSTRATE joined;
--STORE summary INTO '$output/binning' USING PigStorage(',');
--DUMP joined;
STORE summary INTO '$output/binning' USING PigStorage(',');

0 comments on commit 3bc7d6d

Please sign in to comment.