Return-Path: Delivered-To: apmail-hadoop-chukwa-commits-archive@minotaur.apache.org Received: (qmail 19997 invoked from network); 15 Apr 2009 01:08:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 15 Apr 2009 01:08:31 -0000 Received: (qmail 31241 invoked by uid 500); 15 Apr 2009 01:08:31 -0000 Delivered-To: apmail-hadoop-chukwa-commits-archive@hadoop.apache.org Received: (qmail 31230 invoked by uid 500); 15 Apr 2009 01:08:31 -0000 Mailing-List: contact chukwa-commits-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: chukwa-dev@hadoop.apache.org Delivered-To: mailing list chukwa-commits@hadoop.apache.org Received: (qmail 31220 invoked by uid 99); 15 Apr 2009 01:08:31 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 15 Apr 2009 01:08:31 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 15 Apr 2009 01:08:30 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id CE02B2388979; Wed, 15 Apr 2009 01:08:09 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r765028 - in /hadoop/chukwa/branches/chukwa-0.1/conf: database_create_tables mdl.xml.template Date: Wed, 15 Apr 2009 01:08:09 -0000 To: chukwa-commits@hadoop.apache.org From: eyang@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090415010809.CE02B2388979@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: eyang Date: Wed Apr 15 01:08:09 2009 New Revision: 765028 URL: http://svn.apache.org/viewvc?rev=765028&view=rev Log: CHUKWA-131. Added partition expiration for util table. Added finished_maps, finished_reduces, failed_maps, failed_reduces columns to mr_job table. Modified: hadoop/chukwa/branches/chukwa-0.1/conf/database_create_tables hadoop/chukwa/branches/chukwa-0.1/conf/mdl.xml.template Modified: hadoop/chukwa/branches/chukwa-0.1/conf/database_create_tables URL: http://svn.apache.org/viewvc/hadoop/chukwa/branches/chukwa-0.1/conf/database_create_tables?rev=765028&r1=765027&r2=765028&view=diff ============================================================================== --- hadoop/chukwa/branches/chukwa-0.1/conf/database_create_tables (original) +++ hadoop/chukwa/branches/chukwa-0.1/conf/database_create_tables Wed Apr 15 01:08:09 2009 @@ -439,6 +439,10 @@ reduce_input_records bigint default 0, reduce_output_records bigint default 0, jobconf text, + finished_maps default 0, + finished_reduces default 0, + failed_maps default 0, + failed_reduces default 0, primary key(job_id), index(submit_time, finish_time, user, queue) ) ENGINE=InnoDB; Modified: hadoop/chukwa/branches/chukwa-0.1/conf/mdl.xml.template URL: http://svn.apache.org/viewvc/hadoop/chukwa/branches/chukwa-0.1/conf/mdl.xml.template?rev=765028&r1=765027&r2=765028&view=diff ============================================================================== --- hadoop/chukwa/branches/chukwa-0.1/conf/mdl.xml.template (original) +++ hadoop/chukwa/branches/chukwa-0.1/conf/mdl.xml.template Wed Apr 15 01:08:09 2009 @@ -1400,6 +1400,26 @@ jobconf + + metric.jobdata.finished_maps + finished_maps + + + + metric.jobdata.finished_reduces + finished_reduces + + + + metric.jobdata.failed_maps + failed_maps + + + + metric.jobdata.failed_reduces + failed_reduces + + metric.jobdata.counter:filesystemcounters:hdfs_bytes_read @@ -1833,5 +1853,16 @@ 5,30,180,720 + + report.db.name.util + util + + + + + consolidator.table.util + 5,30,180,720 + +