Hi all, I have a strange problem running pig using one of my own UDFs (in java). My java UDF calls a one of my util methods which is also part of the same UDF jar. Now, I try to run in local mode, it works and when I run it remotely on the cluster, I get an error sayign that my util method doesnt exit. It says No such method found error. Any idea what I might be doing wrong?
I have registered my jar in the following way. REGISTER myUDF.jar Thanks Gayatri raw = LOAD '$input' using myLoader();
