Penny throws Exception when netty classes are missing
-----------------------------------------------------

                 Key: PIG-2199
                 URL: https://issues.apache.org/jira/browse/PIG-2199
             Project: Pig
          Issue Type: Bug
    Affects Versions: 0.9.0, 0.10
            Reporter: Doug Daniels


Running the data sampler tool from the penny library causes a 
ClassNotFoundException for a netty class.  Per the mailing list, this is 
because the netty classes are not accessible to Penny.

I've attached a patch that adds netty to the penny jar.

For reference, I'm running a simple script that uses pig test data from
test/org/apache/pig/test/data/InputFiles/jsTst1.txt :

    x = LOAD 'jsTst1.txt' USING PigStorage('\t');
    x_filtered = FILTER x BY (int)$1 > 100;
    STORE x_filtered INTO 'jsTst1Filtered';


--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to