Re: When I system.out.println() in a map or reduce, where does it go?

2008-12-11 Thread Tom White
You can also see the logs from the web UI (http://:50030 by default), by clicking through to the map or reduce task that you are interested in and looking at the page for task attempts. Tom On Wed, Dec 10, 2008 at 10:41 PM, Tarandeep Singh <[EMAIL PROTECTED]> wrote: > you can see the output in ha

reply: When I system.out.println() in a map or reduce, where does it go?

2008-12-10 Thread koven
The best method is find them in web. If hadoop-default.xml,find it mapred.job.tracker.http.address 0.0.0.0:50030 The job tracker http server address and port the server will listen on. If the port is 0 then the server will start on a free port. If you open the port 50030,then yo

Re: When I system.out.println() in a map or reduce, where does it go?

2008-12-10 Thread Edward Capriolo
Also be careful when you do this. If you are running map/reduce on a large file the map and reduce operations will be called many times. You can end up with a lot of output. Use log4j instead.

Re: When I system.out.println() in a map or reduce, where does it go?

2008-12-10 Thread Ravion
Please check userlogs directory - Original Message - From: "David Coe" <[EMAIL PROTECTED]> To: Sent: Thursday, December 11, 2008 5:31 AM Subject: When I system.out.println() in a map or reduce, where does it go? I've noticed that if I put a system.out.println

Re: When I system.out.println() in a map or reduce, where does it go?

2008-12-10 Thread Tarandeep Singh
you can see the output in hadoop log directory (if you have used default settings, it would be $HADOOP_HOME/logs/userlogs) On Wed, Dec 10, 2008 at 1:31 PM, David Coe <[EMAIL PROTECTED]> wrote: > I've noticed that if I put a system.out.println in the run() method I > see the result on my console.

When I system.out.println() in a map or reduce, where does it go?

2008-12-10 Thread David Coe
I've noticed that if I put a system.out.println in the run() method I see the result on my console. If I put it in the map or reduce class, I never see the result. Where does it go? Is there a way to get this result easily (eg dump it in a log file)? David