Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

piggybank

avatar
Expert Contributor

Hey guys,

 does cloudera packs piggy UDF into the CDH? I tried to find in the distribution anything called piggybank, but was not succesfull.

Can somebody advice me how to add the piggybank UDFs into the existing pig installation in CDH?

 

https://cwiki.apache.org/confluence/display/PIG/PiggyBank

Thanks.

Tomas

 

1 ACCEPTED SOLUTION

avatar
Expert Contributor

I found the piggybank.jar in /opt/cloudera/parcels/CDH/lib/pig/.

The problem was in fact that when I called register piggybank, the grunt shell gave me this exception:

 

grunt> REGISTER piggybank.jar 2015-02-19 12:38:49,841 [main] INFO org.apache.hadoop.conf.Configuration.deprecation - fs.default.name is deprecated. Instead, use fs.defaultFS
2015-02-19 12:38:49,849 [main] ERROR org.apache.pig.tools.grunt.Grunt - ERROR 101: file 'piggybank.jar' does not exist.

 

after changing the directory into the lib path the register worked well..

 

or use:

REGISTER /opt/cloudera/parcels/CDH/lib/pig/piggybank.jar

 

Tomas

 

View solution in original post

1 REPLY 1

avatar
Expert Contributor

I found the piggybank.jar in /opt/cloudera/parcels/CDH/lib/pig/.

The problem was in fact that when I called register piggybank, the grunt shell gave me this exception:

 

grunt> REGISTER piggybank.jar 2015-02-19 12:38:49,841 [main] INFO org.apache.hadoop.conf.Configuration.deprecation - fs.default.name is deprecated. Instead, use fs.defaultFS
2015-02-19 12:38:49,849 [main] ERROR org.apache.pig.tools.grunt.Grunt - ERROR 101: file 'piggybank.jar' does not exist.

 

after changing the directory into the lib path the register worked well..

 

or use:

REGISTER /opt/cloudera/parcels/CDH/lib/pig/piggybank.jar

 

Tomas