Re: No changes or progress status on web UI during mapreduce program running

2011-12-15 Thread Vamshi Krishna
Vamshi Krishna [mailto:vamshi2...@gmail.com] > Sent: Wednesday, December 14, 2011 8:14 PM > To: user@hbase.apache.org > Subject: Re: No changes or progress status on web UI during mapreduce > program running > > Hi, thank you. all these days i am coding in eclipse and trying to run > t

RE: No changes or progress status on web UI during mapreduce program running

2011-12-15 Thread Stuti Awasthi
[mailto:vamshi2...@gmail.com] Sent: Wednesday, December 14, 2011 8:14 PM To: user@hbase.apache.org Subject: Re: No changes or progress status on web UI during mapreduce program running Hi, thank you. all these days i am coding in eclipse and trying to run that program from eclipse only, but never

Re: No changes or progress status on web UI during mapreduce program running

2011-12-14 Thread Vamshi Krishna
Hi.. I solved my above problem related to zookeeper.keeperException and other errors. The solution is, i added zookeeper-3.3.2.jar and log4j-1.2.5.jar on classpath of HBASE i.e i set HBASE_CLASSPATH in the {HBASE_HOME}/conf/hbase-env.sh file with the above two jars. That solved my problem. I did

Re: No changes or progress status on web UI during mapreduce program running

2011-12-14 Thread Vamshi Krishna
Hi, thank you. all these days i am coding in eclipse and trying to run that program from eclipse only, but never i saw that program running on the cluster , only it is running on the LocalJobRunner, even though i set config.set("mapred.job.tracker", "jthost:port"); Now i realized on thing. just co

Re: No changes or progress status on web UI during mapreduce program running

2011-12-12 Thread Harsh J
Vamsi, One easy hack is to: config.set("mapred.job.tracker", "jthost:port"); (Or better yet, use the Tool interface always to write your Hadoop jobs and then you can simply pass a "-jt " in the command-line when you want it to run against a cluster. On 13-Dec-2011, at 8:43 AM, Vamshi Krishna w

Re: No changes or progress status on web UI during mapreduce program running

2011-12-12 Thread Vamshi Krishna
what i shoud set in job's classpath ? where should i do setting class path for job and how ? My requirement is to run the MR jobs on the cluster of nodes and NOT by LocalJobRunner , when i start the program form eclipse. please help me.. My snippet of code for job settings is here, are there any mo

Re: No changes or progress status on web UI during mapreduce program running

2011-12-12 Thread Jean-Daniel Cryans
That setting also needs to be in your job's classpath, it won't guess it. J-D On Thu, Dec 8, 2011 at 10:14 PM, Vamshi Krishna wrote: > Hi harsh, > ya, i no jobs are seen in that jobtracker page, under RUNNING JOBS it is > none, under FINISHED JOBS it is none,FAILED JOBS it is none . its just lik

Re: No changes or progress status on web UI during mapreduce program running

2011-12-11 Thread Vamshi Krishna
Hi harsh, ya, i no jobs are seen in that jobtracker page, under RUNNING JOBS it is none, under FINISHED JOBS it is none,FAILED JOBS it is none . its just like no job is running. In eclipse i could see during mapreduce program running, as you said "LOcalJobRunner", may be Eclipse is merely launchin

Re: No changes or progress status on web UI during mapreduce program running

2011-12-08 Thread Vamshi Krishna
Hi harsh, ya, i no jobs are seen in that jobtracker page, under RUNNING JOBS it is none, under FINISHED JOBS it is none,FAILED JOBS it is none . its just like no job is running. In eclipse i could see during mapreduce program running, as you said "LOcalJobRunner", may be Eclipse is merely launchin

Re: No changes or progress status on web UI during mapreduce program running

2011-12-07 Thread Harsh J
Do you not see progress, or do you not see a job at all? Perhaps the problem is that your Eclipse is merely launching the program via a LocalJobRunner, and not submitting to the cluster. This is cause of improper config setup (you need "mapred.job.tracker" set at minimum, to submit a distribute