You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@chukwa.apache.org by ey...@apache.org on 2013/08/18 19:58:25 UTC

svn commit: r1515186 - /incubator/chukwa/trunk/conf/chukwa-demux-conf.xml

Author: eyang
Date: Sun Aug 18 17:58:25 2013
New Revision: 1515186

URL: http://svn.apache.org/r1515186
Log:
CHUKWA-581. Added support for custom reducer package name. (Ivy Tang via Eric Yang)

Modified:
    incubator/chukwa/trunk/conf/chukwa-demux-conf.xml

Modified: incubator/chukwa/trunk/conf/chukwa-demux-conf.xml
URL: http://svn.apache.org/viewvc/incubator/chukwa/trunk/conf/chukwa-demux-conf.xml?rev=1515186&r1=1515185&r2=1515186&view=diff
==============================================================================
--- incubator/chukwa/trunk/conf/chukwa-demux-conf.xml (original)
+++ incubator/chukwa/trunk/conf/chukwa-demux-conf.xml Sun Aug 18 17:58:25 2013
@@ -105,7 +105,7 @@
 
 <!-- -->
 
-<!-- Demux configs for mapper-->
+<!-- Demux configs for mapper -->
 
   <property>
     <name>demux.max.error.count.before.shutdown</name>
@@ -256,7 +256,7 @@
     <value>org.apache.hadoop.chukwa.extraction.demux.processor.mapper.HBaseRegionServerProcessor</value>
    </property>
 
-    <!-- Demux configs for reducer-->
+    <!-- Demux configs for reducer -->
     <property>
         <name>JobLogHistoryReduceProcessor</name>
         <value>,org.apache.hadoop.chukwa.extraction.demux.processor.reducer.JobLogHistoryReduceProcessor</value>
@@ -264,20 +264,21 @@
     </property>
 
     <property>
-        <name>SystemMetrics</name>
-        <value>,org.apache.hadoop.chukwa.extraction.demux.processor.reducer.SystemMetrics</value>
-        <description> Reducer class for Reduce Type SystemMetrics </description>
-    </property>
-
-    <property>
         <name>MRJobReduceProcessor</name>
         <value>,org.apache.hadoop.chukwa.extraction.demux.processor.reducer.MRJobReduceProcessor</value>
         <description> Reducer class for Reduce Type MRJobReduceProcessor </description>
     </property>
 
+    <!-- Demux configs for both mapper and reducer -->
+    <property>
+        <name>SystemMetrics</name>
+        <value>org.apache.hadoop.chukwa.extraction.demux.processor.mapper.SystemMetrics,org.apache.hadoop.chukwa.extraction.demux.processor.reducer.SystemMetrics</value>
+        <description> Reducer class for Reduce Type SystemMetrics </description>
+    </property>
+
     <property>
         <name>ClientTrace</name>
-        <value>,org.apache.hadoop.chukwa.extraction.demux.processor.reducer.ClientTrace</value>
+        <value>org.apache.hadoop.chukwa.extraction.demux.processor.mapper.ClientTraceProcessor,org.apache.hadoop.chukwa.extraction.demux.processor.reducer.ClientTrace</value>
         <description> Reducer class for Reduce Type ClientTrace </description>
     </property>
 </configuration>