Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am running a pig script which is as follows

REGISTER '/home/vishal/FirstUdf.jar';
DEFINE UPPER com.first.UPPER();
A = LOAD '/home/vishal/exampleforPIG1' AS (exchange: chararray, symbol: chararray, date: int,value:float);
B= FOREACH A GENERATE com.first.UPPER(exchange);
DUMP B;

Following is my UDF in java

package com.first;

import java.io.IOException;

import org.apache.pig.EvalFunc;
import org.apache.pig.data.Tuple;
import org.apache.pig.impl.util.WrappedIOException;

@SuppressWarnings("deprecation")
public class UPPER extends EvalFunc<String> {
    public String exec(Tuple input) throws IOException {
        if (input == null || input.size() == 0)
            return null;
        try {
            String str = (String) input.get(0);
            return str.toLowerCase();
        } catch (Exception e) {
            throw WrappedIOException.wrap(
                    "Caught exception processing input row ", e);
        }
    }
}

Now when i try to run that ,it gives me the following error

Pig Stack Trace

ERROR 1066: Unable to open iterator for alias B

org.apache.pig.impl.logicalLayer.FrontendException: ERROR 1066: Unable to open iterator for alias B
    at org.apache.pig.PigServer.openIterator(PigServer.java:866)
    at org.apache.pig.tools.grunt.GruntParser.processDump(GruntParser.java:683)
    at org.apache.pig.tools.pigscript.parser.PigScriptParser.parse(PigScriptParser.java:303)
    at org.apache.pig.tools.grunt.GruntParser.parseStopOnError(GruntParser.java:190)
    at org.apache.pig.tools.grunt.GruntParser.parseStopOnError(GruntParser.java:166)
    at org.apache.pig.tools.grunt.Grunt.exec(Grunt.java:84)
    at org.apache.pig.Main.run(Main.java:430)
    at org.apache.pig.Main.main(Main.java:111)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.apache.hadoop.util.RunJar.main(RunJar.java:156) Caused by: java.io.IOException: Job terminated with anomalous status FAILED
    at org.apache.pig.PigServer.openIterator(PigServer.java:858)
    ... 12 more

Whys is that in pig script it is not able to open an iterator for B ie (it is not able to assign an iterator for the following line)

B = FOREACH A GENERATE com.first.UPPER(exchange);

'exampleforPIG1' file has following data

NYSE    CPO 2009-12-30  0.14
NYSE    CPO 2009-09-28  0.14
NYSE    CPO 2009-06-26  0.14
NYSE    CPO 2009-03-27  0.14
NYSE    CPO 2009-01-06  0.14
NYSE    CCS 2009-10-28  0.414
NYSE    CCS 2009-07-29  0.414
..
..
etc
share|improve this question
Which Pig version do you use? – Lorand Bendig Mar 21 at 13:42
Hi Lonard I am using Pig 0.10.1 .Is the problem version specific? – vishal1985 Mar 22 at 3:51
Do you use run it locally or on a cluster? If on a cluster I'd check the tasktrackers' logs for more error messages (e.g: outofmemory error) You may also increase the logging level in Pig to see whether it helps to track down the error: (log4j.properties, set the root logger to debug: log4j.logger.org.apache.pig=debug..) With the same setup you have, it works flawlessly for me – Lorand Bendig Mar 22 at 9:09
Following is what i got after doing log4j.logger.org.apache.pig=debug – vishal1985 Mar 26 at 4:04
2013-03-26 09:36:28,054 [main] INFO org.apache.pig.tools.pigstats.SimplePigStats - Script Statistics: HadoopVersion PigVersion UserId StartedAt FinishedAt Features 1.1.1 0.10.1-SNAPSHOT vishal 2013-03-26 09:36:22 2013-03-26 09:36:28 UNKNOWN Failed! Failed Jobs: JobId Alias Feature Message Outputs job_local_0001 A,B MAP_ONLY Message: Job failed! Error - NA file:/tmp/temp1667865178/tmp-477995688, Input(s): Failed to read data from "/home/vishal/BaseballExampleForPig" – vishal1985 Mar 26 at 4:05
show 6 more comments

1 Answer

Well two things,

  1. If all you want to do is typecast to upper/lower case, why not use the inbuilt functions UPPER/LOWER. You can find the usage in the reference manuals.

  2. If you want to continue in the same method, it should be
    B = FOREACH A GENERATE UPPER(exchange);
    You have already defined it as DEFINE UPPER com.first.UPPER();

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.