Re: How to write custom web-ui

2009-03-20 Thread Rasit OZDAS
Thanks, Stefan. That's a good starting point. Is there any way to get JobTracker instance? I also need to pass it in, in my code. Do I have to initialize JobTracker myself? 2009/3/19 Stefan Podkowinski > This is done in the JobTracker class during the bootstrap process of > the jetty servlet en

Re: How to write custom web-ui

2009-03-19 Thread Stefan Podkowinski
This is done in the JobTracker class during the bootstrap process of the jetty servlet engine. Searching for 'setAttribute("job.tracker"' should find the exact position. On Wed, Mar 18, 2009 at 3:43 PM, Rasit OZDAS wrote: > Hi, > > Web ui of hadoop isn't sufficient enough for our project, so I s

How to write custom web-ui

2009-03-18 Thread Rasit OZDAS
Hi, Web ui of hadoop isn't sufficient enough for our project, so I should change it a little bit. But pages generally start with application.getProperty('job.tracker'); to get JobTracker instance, or similarly for NameNode instance. I couldn't find anything in the code, where they're first initi