1. Could not resolve myudfs.UPPER using imports: [, org.apache.pig.builtin., org.apache.pig.impl.builtin.]
错误原因:所调用的自定义函数没有注册;
解决方案:使用Register注册对应的jar包。
ERROR 1070: Could not resolve count using imports: [, org.apache.pig.builtin., org.apache.pig.impl.builtin.]
错误原因:所使用的count命令不存在;
解决办法:用COUNT替换count。
引申:其它关键词错误类似。
2. Invalid field projection. Projected field [BizId] does not exist in schema:
错误原因:模式不存在
解决方案:检查程序中是否使用了没有定义的字段
3. [main] ERROR org.apache.pig.tools.grunt.Grunt - ERROR 1200: <line 5, column 0> mismatched input 'StartRunLog2' expecting SEMI_COLON
错误原因:SEMI_COLON是分号的意思;pig脚本中句末少了分号。