FLATTEN() the bag, re-project (foreach/generate) leaving out the unwanted items, then group back together if you like.
_____________ Steve Bernstein VP, Analytics Rearden Commerce, Inc. +1.408.499.0961 Mobile deem.com | reardencommerce.com -----Original Message----- From: James Newhaven [mailto:[email protected]] Sent: Wednesday, May 09, 2012 10:43 AM To: [email protected] Subject: Removing unwanted items in tuple I have a bag of tuples like this: { (product, unwanted, count), (product, unwanted, count) } Is it possible in Pig to generate a new bag with a revised tuple structure with one of its columns removed? The desired structure I want is: { (product, count), (product, count) } Thanks, James
