Re: Add jar file via -libjars - giving errors

2008-10-17 Thread Kyle Lau
That's right. I have success with the 0.18 (from EC2) and 0.18.1 (my local installation) as well. Kyle On Tue, 2008-10-07 at 09:13 +0530, Amareshwari Sriramadasu wrote: > Hi, > > From 0.19, the jars added using -libjars are available on the client > classpath also, fixed by HADOOP-3570. > >

Re: Add jar file via -libjars - giving errors

2008-10-06 Thread Amareshwari Sriramadasu
Hi, From 0.19, the jars added using -libjars are available on the client classpath also, fixed by HADOOP-3570. Thanks Amareshwari Mahadev Konar wrote: HI Tarandeep, the libjars options does not add the jar on the client side. Their is an open jira for that ( id ont remember which one)... O

Re: Add jar file via -libjars - giving errors

2008-10-06 Thread Mahadev Konar
You can just add the jar to the env variable HADOOP_CLASSPATH If using bash Just do this : Export HADOOP_CLASSPATH=path to your class path on the client And then use the libjars option. mahadev On 10/6/08 2:55 PM, "Tarandeep Singh" <[EMAIL PROTECTED]> wrote: > thanks Mahadev for the repl

Re: Add jar file via -libjars - giving errors

2008-10-06 Thread Taeho Kang
Adding your jar files in the $HADOOP_HOME/lib folder works, but you would have to restart all your tasktrackers to have your jar files loaded. If you repackage your map-reduce jar file (e.g. hadoop-0.18.0-examples.jar) with your jar file and run your job with the newly repackaged jar file, it woul

Re: Add jar file via -libjars - giving errors

2008-10-06 Thread Tarandeep Singh
thanks Mahadev for the reply. So that means I have to copy my jar file in the $HADOOP_HOME/lib folder on all slave machines like before. One more question- I am adding a conf file (just like HADOOP_SITE.xml) via -conf option and I am able to query parameters in mapper/reducers. But is there a way

Re: Add jar file via -libjars - giving errors

2008-10-06 Thread Mahadev Konar
HI Tarandeep, the libjars options does not add the jar on the client side. Their is an open jira for that ( id ont remember which one)... Oyu have to add the jar to the HADOOP_CLASSPATH on the client side so that it gets picked up on the client side as well. mahadev On 10/6/08 2:30 PM, "Tara