Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Getting an error on running HCatalog

A = LOAD 'eventnew.txt' USING HCatalogLoader();

2015-07-08 19:56:34,875 [main] ERROR org.apache.pig.tools.grunt.Grunt - ERROR 1070: Could not resolve HCatalogLoader using imports: [, java.lang., org.apache.pig.builtin., org.apache.pig.impl.builtin.] Details at logfile: /home/KS5023833/pig_1436364102374.log

Then I tried

 A = LOAD 'xyz' USING org.apache.hive.hcatalog.pig.HCatLoader();

This is also not working.

1070: Could not resolve org.apache.hive.hcatalog.pig.HCatLoader using imports: [, java.lang., org.apache.pig.builtin., org.apache.pig.impl.builtin.]

what is the problem? I am a novice in Hadoop.

like image 676
HeadBanger' Avatar asked Jul 08 '15 14:07

HeadBanger'


2 Answers

As stated by GoBrewers14 you must start pig with -useHCatalog. If you are running a Pig script an alternative is to determine the location of the HCatalog jar and add a REGISTER statement with the path of the jar to the top of your script

Example:

REGISTER /home/user/Installations/hive-0.11.0-bin/hcatalog/share/hcatalog/hcatalog-core-0.11.0.jar;

of course your path/version may be different.

like image 190
kira_codes Avatar answered Sep 17 '22 12:09

kira_codes


I was facing the same issue, fixed it as following: Start pig using "-useHCatalog" option.

pig -useHCatalog

then try : A = LOAD 'eventnew.txt' USING HCatalogLoader();

like image 42
Sangita Satapathy Avatar answered Sep 20 '22 12:09

Sangita Satapathy