|
|
-
How to get job configuration from external source
patek tek 2010-08-12, 03:21
I am building a monitoring tool for my Hadoop cluster. I have been able to collect most of the data I need from JobClient. How can I get JobConf for a job? My monitoring tool needs the outputPath and inputPath of the mapreduce jobs.
I appreciate any hint you can give me.
Thanks, Patek
-
How to get job configuration from external source
patek tek 2010-08-12, 17:58
Hi All, I am building a monitoring tool for my Hadoop cluster. I have been able to collect most of the data I need from JobClient. How can I get JobConf for a job? My monitoring tool needs the outputPath and inputPath of the mapreduce jobs.
I appreciate any hint you can give me.
Thanks, Patek
-
Re: How to get job configuration from external source
Ted Yu 2010-08-12, 18:35
Check $HADOOP_HOME/logs directory where you can find: job_201008102250_0035_conf.xml job_201008102250_0092_conf.xml ...
On Thu, Aug 12, 2010 at 10:58 AM, patek tek <[EMAIL PROTECTED]> wrote:
> Hi All, > I am building a monitoring tool for my Hadoop cluster. I have been able to > collect most of the data I need from JobClient. > How can I get JobConf for a job? My monitoring tool needs the outputPath > and > inputPath of the mapreduce jobs. > > I appreciate any hint you can give me. > > Thanks, > Patek >
-
Re: How to get job configuration from external source
patek tek 2010-08-12, 23:18
Thanks for your response, Ted. Yes, that I did but requires the tool to gain access to the log files and parse the xml file etc, I was hoping that i could get that data from the jobtracker
Any other way? Patek
On Thu, Aug 12, 2010 at 2:35 PM, Ted Yu <[EMAIL PROTECTED]> wrote:
> Check $HADOOP_HOME/logs directory where you can find: > job_201008102250_0035_conf.xml job_201008102250_0092_conf.xml ... > > On Thu, Aug 12, 2010 at 10:58 AM, patek tek <[EMAIL PROTECTED]> wrote: > > > Hi All, > > I am building a monitoring tool for my Hadoop cluster. I have been able > to > > collect most of the data I need from JobClient. > > How can I get JobConf for a job? My monitoring tool needs the outputPath > > and > > inputPath of the mapreduce jobs. > > > > I appreciate any hint you can give me. > > > > Thanks, > > Patek > > >
-
Re: How to get job configuration from external source
Arun C Murthy 2010-08-13, 01:07
The JT saves job-history and job.xml for each job in HDFS to a path specified by "mapred.job.tracker.history.completed.location"
Hope that helps.
Arun
On Aug 11, 2010, at 8:21 PM, patek tek wrote:
> I am building a monitoring tool for my Hadoop cluster. I have been > able to > collect most of the data I need from JobClient. > How can I get JobConf for a job? My monitoring tool needs the > outputPath and > inputPath of the mapreduce jobs. > > I appreciate any hint you can give me. > > Thanks, > Patek
|
|