|
|
-
Tools for extracting data from hadoop logs
bharath vissapragada 2012-10-30, 01:48
Hi list,
Are the any tools for parsing and extracting data from Hadoop's Job Logs? I want to do stuff like ..
1. Getting run time of each map/reduce task 2. Total map/reduce tasks ran on a particular node in that job and some similar stuff
Any suggestions?
Thanks
-
Re: Tools for extracting data from hadoop logs
anand sharma 2012-10-30, 02:23
Hi bharath Apache Flume is there and also if you want to take a look Scribe from Facebook is also there then there are other log aggregation tool too.
On Tue, Oct 30, 2012 at 7:18 AM, bharath vissapragada < [EMAIL PROTECTED]> wrote:
> Hi list, > > Are the any tools for parsing and extracting data from Hadoop's Job Logs? > I want to do stuff like .. > > 1. Getting run time of each map/reduce task > 2. Total map/reduce tasks ran on a particular node in that job and some > similar stuff > > Any suggestions? > > Thanks >
-
Re: Tools for extracting data from hadoop logs
Binglin Chang 2012-10-30, 03:24
Hi,
I think you want to analyze hadoop job logs in jobtracker history folder? These logs are in a centralized folder and don't need tools like flume or scribe to gather them. I used to write a simple python script to parse those log files, and generate csv/json reports, basically you can use it to get execution time, counter, status of job, taks, attempts, maybe you can modify it to meet you needs.
Thanks, Binglin On Tue, Oct 30, 2012 at 9:48 AM, bharath vissapragada < [EMAIL PROTECTED]> wrote:
> Hi list, > > Are the any tools for parsing and extracting data from Hadoop's Job Logs? > I want to do stuff like .. > > 1. Getting run time of each map/reduce task > 2. Total map/reduce tasks ran on a particular node in that job and some > similar stuff > > Any suggestions? > > Thanks >
-
Re: Tools for extracting data from hadoop logs
Manoj Babu 2012-10-30, 03:33
Much useful one thanks Binglin for sharing it!
Cheers! Manoj.
On Tue, Oct 30, 2012 at 8:54 AM, Binglin Chang <[EMAIL PROTECTED]> wrote:
> Hi, > > I think you want to analyze hadoop job logs in jobtracker history folder? > These logs are in a centralized folder and don't need tools like flume or > scribe to gather them. > I used to write a simple python script to parse those log files, and > generate csv/json reports, basically you can use it to get execution time, > counter, status of job, taks, attempts, maybe you can modify it to meet you > needs. > > Thanks, > Binglin > > > On Tue, Oct 30, 2012 at 9:48 AM, bharath vissapragada < > [EMAIL PROTECTED]> wrote: > >> Hi list, >> >> Are the any tools for parsing and extracting data from Hadoop's Job Logs? >> I want to do stuff like .. >> >> 1. Getting run time of each map/reduce task >> 2. Total map/reduce tasks ran on a particular node in that job and some >> similar stuff >> >> Any suggestions? >> >> Thanks >> > >
-
Re: Tools for extracting data from hadoop logs
bharath vissapragada 2012-10-30, 05:03
Hi Binglin, Great scripts ..Thanks for sharing :D Regards, On Tue, Oct 30, 2012 at 8:54 AM, Binglin Chang <[EMAIL PROTECTED]> wrote: > Hi, > > I think you want to analyze hadoop job logs in jobtracker history folder? > These logs are in a centralized folder and don't need tools like flume or > scribe to gather them. > I used to write a simple python script to parse those log files, and > generate csv/json reports, basically you can use it to get execution time, > counter, status of job, taks, attempts, maybe you can modify it to meet you > needs. > > Thanks, > Binglin > > > On Tue, Oct 30, 2012 at 9:48 AM, bharath vissapragada < > [EMAIL PROTECTED]> wrote: > >> Hi list, >> >> Are the any tools for parsing and extracting data from Hadoop's Job Logs? >> I want to do stuff like .. >> >> 1. Getting run time of each map/reduce task >> 2. Total map/reduce tasks ran on a particular node in that job and some >> similar stuff >> >> Any suggestions? >> >> Thanks >> > > -- Regards, Bharath .V w: http://researchweb.iiit.ac.in/~bharath.v
-
Re: Tools for extracting data from hadoop logs
Raj Vishwanathan 2012-10-30, 05:21
Take a look at https://github.com/rajvish/hadoop-summary>________________________________ > From: bharath vissapragada <[EMAIL PROTECTED]> >To: [EMAIL PROTECTED] >Sent: Monday, October 29, 2012 10:03 PM >Subject: Re: Tools for extracting data from hadoop logs > > >Hi Binglin, > > >Great scripts ..Thanks for sharing :D > > >Regards, > > >On Tue, Oct 30, 2012 at 8:54 AM, Binglin Chang <[EMAIL PROTECTED]> wrote: > >Hi, >> >> >>I think you want to analyze hadoop job logs in jobtracker history folder? These logs are in a centralized folder and don't need tools like flume or scribe to gather them. >>I used to write a simple python script to parse those log files, and generate csv/json reports, basically you can use it to get execution time, counter, status of job, taks, attempts, maybe you can modify it to meet you needs. >> >> >>Thanks, >>Binglin >> >> >> >> >>On Tue, Oct 30, 2012 at 9:48 AM, bharath vissapragada <[EMAIL PROTECTED]> wrote: >> >>Hi list, >>> >>> >>>Are the any tools for parsing and extracting data from Hadoop's Job Logs? I want to do stuff like .. >>> >>> >>>1. Getting run time of each map/reduce task >>>2. Total map/reduce tasks ran on a particular node in that job and some similar stuff >>> >>> >>>Any suggestions? >>> >>> >>> >>>Thanks >> > > > >-- >Regards, >Bharath .V >w: http://researchweb.iiit.ac.in/~bharath.v> > >
|
|