LocalRearrange out of bounds exception - tips for debugging?

2009-10-13 Thread Dmitriy Ryaboy
We ran into what looks like some edge case bug in Pig, which causes it to throw an IndexOutOfBoundsException (stack trace below). The script just joins two relations; it looks like our data was generated incorrectly, and the join is empty, which may be what's causing the failure. It also appears

Re: LocalRearrange out of bounds exception - tips for debugging?

2009-10-13 Thread Alan Gates
Have you checked that each record your input data has at least the number of fields you specify? Have you checked that the field separator in your data matches the default for PigPerformanceLoader (^A I think)? Alan. On Oct 13, 2009, at 10:28 AM, Dmitriy Ryaboy wrote: We ran into what