You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flume.apache.org by rg...@apache.org on 2017/11/03 06:02:26 UTC

[1/4] flume git commit: FLUME-2050 Upgrade to Log4j 2

Repository: flume
Updated Branches:
  refs/heads/flume-2050 [created] 140ea5d28


http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sources/flume-scribe-source/pom.xml
----------------------------------------------------------------------
diff --git a/flume-ng-sources/flume-scribe-source/pom.xml b/flume-ng-sources/flume-scribe-source/pom.xml
index dc46c62..933f5aa 100644
--- a/flume-ng-sources/flume-scribe-source/pom.xml
+++ b/flume-ng-sources/flume-scribe-source/pom.xml
@@ -150,8 +150,26 @@ limitations under the License.
     </dependency>
 
     <dependency>
-      <groupId>org.slf4j</groupId>
-      <artifactId>slf4j-log4j12</artifactId>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-api</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-core</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-slf4j-impl</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-1.2-api</artifactId>
       <scope>test</scope>
     </dependency>
 

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sources/flume-twitter-source/src/test/resources/log4j.properties
----------------------------------------------------------------------
diff --git a/flume-ng-sources/flume-twitter-source/src/test/resources/log4j.properties b/flume-ng-sources/flume-twitter-source/src/test/resources/log4j.properties
deleted file mode 100644
index 7755024..0000000
--- a/flume-ng-sources/flume-twitter-source/src/test/resources/log4j.properties
+++ /dev/null
@@ -1,33 +0,0 @@
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-#  http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-# KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-log4j.rootLogger=WARN, A1
-
-log4j.logger.org.apache.flume.sink=INFO
-#log4j.logger.org.apache.flume.sink.solr=DEBUG
-log4j.logger.org.apache.solr=INFO
-#log4j.logger.org.apache.solr.hadoop=DEBUG
-log4j.logger.org.apache.solr.morphline=DEBUG
-log4j.logger.org.apache.solr.update.processor.LogUpdateProcessor=WARN
-log4j.logger.org.apache.solr.core.SolrCore=WARN
-log4j.logger.org.apache.solr.search.SolrIndexSearcher=ERROR
-
-# A1 is set to be a ConsoleAppender.
-log4j.appender.A1=org.apache.log4j.ConsoleAppender
-
-# A1 uses PatternLayout.
-log4j.appender.A1.layout=org.apache.log4j.PatternLayout
-log4j.appender.A1.layout.ConversionPattern=%-4r [%t] %-5p %c %x - %m%n

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sources/flume-twitter-source/src/test/resources/log4j2.xml
----------------------------------------------------------------------
diff --git a/flume-ng-sources/flume-twitter-source/src/test/resources/log4j2.xml b/flume-ng-sources/flume-twitter-source/src/test/resources/log4j2.xml
new file mode 100644
index 0000000..0f3d384
--- /dev/null
+++ b/flume-ng-sources/flume-twitter-source/src/test/resources/log4j2.xml
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+-->
+<Configuration status="OFF">
+  <Appenders>
+    <Console name="Console" target="SYSTEM_OUT">
+      <PatternLayout pattern="%-4r [%t] %-5p %c %x - %m%n" />
+    </Console>
+  </Appenders>
+  <Loggers>
+    <Logger name="org.apache.flume.sink" level="INFO"/>
+    <Logger name="org.apache.solr" level="INFO"/>
+    <Logger name="org.apache.solr.morphline" level="DEBUG"/>
+    <Logger name="org.apache.solr" level="DEBUG"/>
+    <Logger name="org.apache.solr.update.processor.LogUpdateProcessor" level="WARN"/>
+    <Logger name="org.apache.solr.core.SolrCore" level="WARN"/>
+    <Logger name="org.apache.solr.search.SolrIndexSearcher" level="ERROR"/>
+    <Root level="WARN">
+      <AppenderRef ref="Console" />
+    </Root>
+  </Loggers>
+</Configuration>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-tests/pom.xml
----------------------------------------------------------------------
diff --git a/flume-ng-tests/pom.xml b/flume-ng-tests/pom.xml
index 2a4b42c..ee3f4f4 100644
--- a/flume-ng-tests/pom.xml
+++ b/flume-ng-tests/pom.xml
@@ -41,8 +41,18 @@
       <artifactId>flume-ng-configuration</artifactId>
     </dependency>
     <dependency>
-      <groupId>log4j</groupId>
-      <artifactId>log4j</artifactId>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-api</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-core</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-1.2-api</artifactId>
       <scope>test</scope>
     </dependency>
     <dependency>
@@ -59,6 +69,16 @@
       <groupId>org.apache.hadoop</groupId>
       <artifactId>${hadoop.common.artifact.id}</artifactId>
       <optional>true</optional>
+      <exclusions>
+        <exclusion>
+          <groupId>log4j</groupId>
+          <artifactId>log4j</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.slf4j</groupId>
+          <artifactId>slf4j-log4j12</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
     <dependency>
       <groupId>com.google.guava</groupId>

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-tests/src/test/resources/log4j.properties
----------------------------------------------------------------------
diff --git a/flume-ng-tests/src/test/resources/log4j.properties b/flume-ng-tests/src/test/resources/log4j.properties
deleted file mode 100644
index 739ecc8..0000000
--- a/flume-ng-tests/src/test/resources/log4j.properties
+++ /dev/null
@@ -1,25 +0,0 @@
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-#  http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-# KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-
-
-log4j.rootLogger = INFO, out
-
-log4j.appender.out = org.apache.log4j.ConsoleAppender
-log4j.appender.out.layout = org.apache.log4j.PatternLayout
-log4j.appender.out.layout.ConversionPattern = %d (%t) [%p - %l] %m%n
-
-log4j.logger.org.apache.flume = DEBUG

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-tests/src/test/resources/log4j2.xml
----------------------------------------------------------------------
diff --git a/flume-ng-tests/src/test/resources/log4j2.xml b/flume-ng-tests/src/test/resources/log4j2.xml
new file mode 100644
index 0000000..a6e2e30
--- /dev/null
+++ b/flume-ng-tests/src/test/resources/log4j2.xml
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+-->
+<Configuration status="OFF">
+  <Appenders>
+    <Console name="Console" target="SYSTEM_OUT">
+      <PatternLayout pattern="%d (%t) [%p - %l] %m%n" />
+    </Console>
+  </Appenders>
+  <Loggers>
+    <Root level="INFO">
+      <Logger name="org.apache.flume" level="DEBUG"/>
+      <AppenderRef ref="Console" />
+    </Root>
+  </Loggers>
+</Configuration>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index da84b5b..465c85f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -81,8 +81,7 @@ limitations under the License.
     <kite.version>1.0.0</kite.version>
     <hive.version>1.0.0</hive.version>
     <lifecycle-mapping.version>1.0.0</lifecycle-mapping.version>
-    <log4j-extras.version>1.1</log4j-extras.version>
-    <log4j-log4j.version>1.2.17</log4j-log4j.version>
+    <log4j.version>2.9.1</log4j.version>
     <mapdb.version>0.9.9</mapdb.version>
     <mina.version>2.0.4</mina.version>
     <mockito.version>1.9.0</mockito.version>
@@ -991,36 +990,38 @@ limitations under the License.
       </dependency>
 
       <dependency>
-        <groupId>log4j</groupId>
-        <artifactId>log4j</artifactId>
-        <version>${log4j-log4j.version}</version>
-        <exclusions>
-          <exclusion>
-            <groupId>com.sun.jdmk</groupId>
-            <artifactId>jmxtools</artifactId>
-          </exclusion>
-          <exclusion>
-            <groupId>com.sun.jmx</groupId>
-            <artifactId>jmxri</artifactId>
-          </exclusion>
-        </exclusions>
+        <groupId>org.apache.logging.log4j</groupId>
+        <artifactId>log4j-api</artifactId>
+        <version>${log4j.version}</version>
       </dependency>
 
       <dependency>
-        <groupId>log4j</groupId>
-        <artifactId>apache-log4j-extras</artifactId>
-        <version>${log4j-extras.version}</version>
+        <groupId>org.apache.logging.log4j</groupId>
+        <artifactId>log4j-core</artifactId>
+        <version>${log4j.version}</version>
       </dependency>
 
       <dependency>
-        <groupId>org.slf4j</groupId>
-        <artifactId>slf4j-api</artifactId>
-        <version>${slf4j.version}</version>
+        <groupId>org.apache.logging.log4j</groupId>
+        <artifactId>log4j-slf4j-impl</artifactId>
+        <version>${log4j.version}</version>
+      </dependency>
+
+      <dependency>
+        <groupId>org.apache.logging.log4j</groupId>
+        <artifactId>log4j-1.2-api</artifactId>
+        <version>${log4j.version}</version>
+      </dependency>
+
+      <dependency>
+        <groupId>org.apache.logging.log4j</groupId>
+        <artifactId>log4j-jcl</artifactId>
+        <version>${log4j.version}</version>
       </dependency>
 
       <dependency>
         <groupId>org.slf4j</groupId>
-        <artifactId>slf4j-log4j12</artifactId>
+        <artifactId>slf4j-api</artifactId>
         <version>${slf4j.version}</version>
       </dependency>
 


[3/4] flume git commit: FLUME-2050 Upgrade to Log4j 2

Posted by rg...@apache.org.
http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c121.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c121.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c121.dat
new file mode 100644
index 0000000..35302f8
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c121.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c130.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c130.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c130.dat
new file mode 100644
index 0000000..22bee83
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c130.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c141.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c141.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c141.dat
new file mode 100644
index 0000000..16899ce
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c141.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c150.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c150.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c150.dat
new file mode 100644
index 0000000..eebb490
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c150.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c161.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c161.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c161.dat
new file mode 100644
index 0000000..53060a2
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c161.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c171.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c171.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c171.dat
new file mode 100644
index 0000000..d9ae2a6
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c171.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c180.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c180.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c180.dat
new file mode 100644
index 0000000..73e230c
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c180.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c191.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c191.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c191.dat
new file mode 100644
index 0000000..f80a8ae
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c191.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c1a1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c1a1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c1a1.dat
new file mode 100644
index 0000000..28ada55
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c1a1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c1b1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c1b1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c1b1.dat
new file mode 100644
index 0000000..07bea54
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c1b1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c1c0.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c1c0.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c1c0.dat
new file mode 100644
index 0000000..c5b91e2
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c1c0.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c1d1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c1d1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c1d1.dat
new file mode 100644
index 0000000..451f02f
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c1d1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c1e0.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c1e0.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c1e0.dat
new file mode 100644
index 0000000..476a49f
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c1e0.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c1f1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c1f1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c1f1.dat
new file mode 100644
index 0000000..41ff8ca
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c1f1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c20.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c20.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c20.dat
new file mode 100644
index 0000000..f7a370d
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c20.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c200.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c200.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c200.dat
new file mode 100644
index 0000000..f486720
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c200.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c211.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c211.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c211.dat
new file mode 100644
index 0000000..b44cb69
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c211.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c221.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c221.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c221.dat
new file mode 100644
index 0000000..1e7bdaa
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c221.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c230.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c230.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c230.dat
new file mode 100644
index 0000000..8099831
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c230.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c241.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c241.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c241.dat
new file mode 100644
index 0000000..568e2c5
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c241.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c251.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c251.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c251.dat
new file mode 100644
index 0000000..add1776
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c251.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c260.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c260.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c260.dat
new file mode 100644
index 0000000..25f81fd
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c260.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c271.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c271.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c271.dat
new file mode 100644
index 0000000..51cde57
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c271.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c281.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c281.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c281.dat
new file mode 100644
index 0000000..cfed875
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c281.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c290.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c290.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c290.dat
new file mode 100644
index 0000000..a85589e
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c290.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c2a1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c2a1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c2a1.dat
new file mode 100644
index 0000000..8e2ed6a
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c2a1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c2b1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c2b1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c2b1.dat
new file mode 100644
index 0000000..2a29692
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c2b1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c2c1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c2c1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c2c1.dat
new file mode 100644
index 0000000..5511575
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c2c1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c2d0.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c2d0.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c2d0.dat
new file mode 100644
index 0000000..4adc6e4
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c2d0.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c2e1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c2e1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c2e1.dat
new file mode 100644
index 0000000..b37b9b2
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c2e1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c2f0.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c2f0.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c2f0.dat
new file mode 100644
index 0000000..d854b4b
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c2f0.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c300.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c300.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c300.dat
new file mode 100644
index 0000000..2053e01
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c300.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c31.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c31.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c31.dat
new file mode 100644
index 0000000..30b5bf4
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c31.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c311.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c311.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c311.dat
new file mode 100644
index 0000000..f60c260
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c311.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c321.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c321.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c321.dat
new file mode 100644
index 0000000..a9d7453
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c321.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c331.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c331.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c331.dat
new file mode 100644
index 0000000..85ee72b
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c331.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c340.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c340.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c340.dat
new file mode 100644
index 0000000..d99b11a
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c340.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c351.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c351.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c351.dat
new file mode 100644
index 0000000..f822f4c
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c351.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c3570.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c3570.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c3570.dat
new file mode 100644
index 0000000..de30561
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c3570.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c3581.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c3581.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c3581.dat
new file mode 100644
index 0000000..7840473
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c3581.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c3590.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c3590.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c3590.dat
new file mode 100644
index 0000000..de30561
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c3590.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c35a1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c35a1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c35a1.dat
new file mode 100644
index 0000000..3712a9d
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c35a1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c35b0.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c35b0.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c35b0.dat
new file mode 100644
index 0000000..de30561
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c35b0.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c35c0.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c35c0.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c35c0.dat
new file mode 100644
index 0000000..1a75cd6
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c35c0.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c35d0.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c35d0.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c35d0.dat
new file mode 100644
index 0000000..de30561
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c35d0.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c35e1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c35e1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c35e1.dat
new file mode 100644
index 0000000..5aff04b
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c35e1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c35f1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c35f1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c35f1.dat
new file mode 100644
index 0000000..94ed1bd
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c35f1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c3600.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c3600.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c3600.dat
new file mode 100644
index 0000000..1a75cd6
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c3600.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c361.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c361.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c361.dat
new file mode 100644
index 0000000..b5c8f25
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c361.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c3610.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c3610.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c3610.dat
new file mode 100644
index 0000000..de30561
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c3610.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c3621.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c3621.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c3621.dat
new file mode 100644
index 0000000..f6e374c
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c3621.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c3630.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c3630.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c3630.dat
new file mode 100644
index 0000000..1a75cd6
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c3630.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c371.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c371.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c371.dat
new file mode 100644
index 0000000..ad11f01
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c371.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c380.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c380.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c380.dat
new file mode 100644
index 0000000..9e6b4e5
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c380.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c391.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c391.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c391.dat
new file mode 100644
index 0000000..64561d6
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c391.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c3a1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c3a1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c3a1.dat
new file mode 100644
index 0000000..fa33220
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c3a1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c3b1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c3b1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c3b1.dat
new file mode 100644
index 0000000..2ce0396
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c3b1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c3c0.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c3c0.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c3c0.dat
new file mode 100644
index 0000000..4d061cf
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c3c0.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c3d1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c3d1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c3d1.dat
new file mode 100644
index 0000000..45c9fa2
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c3d1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c3e1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c3e1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c3e1.dat
new file mode 100644
index 0000000..48f53e6
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c3e1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c3f1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c3f1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c3f1.dat
new file mode 100644
index 0000000..08acdce
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c3f1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c400.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c400.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c400.dat
new file mode 100644
index 0000000..1e8976f
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c400.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c41.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c41.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c41.dat
new file mode 100644
index 0000000..e4187e0
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c41.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c411.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c411.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c411.dat
new file mode 100644
index 0000000..8aba2fb
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c411.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c421.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c421.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c421.dat
new file mode 100644
index 0000000..65775ee
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c421.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c430.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c430.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c430.dat
new file mode 100644
index 0000000..55c948d
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c430.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c441.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c441.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c441.dat
new file mode 100644
index 0000000..3948b2a
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c441.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c451.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c451.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c451.dat
new file mode 100644
index 0000000..fe1ab73
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c451.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c461.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c461.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c461.dat
new file mode 100644
index 0000000..e6d9854
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c461.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c470.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c470.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c470.dat
new file mode 100644
index 0000000..c9f2eb1
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c470.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c481.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c481.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c481.dat
new file mode 100644
index 0000000..397b291
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c481.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c51.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c51.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c51.dat
new file mode 100644
index 0000000..705f3c6
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c51.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c560.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c560.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c560.dat
new file mode 100644
index 0000000..53a5f94
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c560.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c571.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c571.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c571.dat
new file mode 100644
index 0000000..b20aa43
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c571.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c580.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c580.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c580.dat
new file mode 100644
index 0000000..26e8286
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c580.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c591.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c591.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c591.dat
new file mode 100644
index 0000000..2f12e46
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c591.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c5a1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c5a1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c5a1.dat
new file mode 100644
index 0000000..6b07b5e
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c5a1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c5b1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c5b1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c5b1.dat
new file mode 100644
index 0000000..5ff205b
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c5b1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c5c0.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c5c0.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c5c0.dat
new file mode 100644
index 0000000..12b8410
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c5c0.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c5d1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c5d1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c5d1.dat
new file mode 100644
index 0000000..20864fb
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c5d1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c5e0.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c5e0.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c5e0.dat
new file mode 100644
index 0000000..0f88674
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c5e0.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c5f1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c5f1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c5f1.dat
new file mode 100644
index 0000000..b2a353e
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c5f1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c60.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c60.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c60.dat
new file mode 100644
index 0000000..ac1407e
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c60.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c600.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c600.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c600.dat
new file mode 100644
index 0000000..b657bf8
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c600.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c611.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c611.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c611.dat
new file mode 100644
index 0000000..f5091a7
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c611.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c620.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c620.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c620.dat
new file mode 100644
index 0000000..ff9ae95
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c620.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c631.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c631.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c631.dat
new file mode 100644
index 0000000..eae74e1
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c631.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c640.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c640.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c640.dat
new file mode 100644
index 0000000..ea6c68e
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c640.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c651.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c651.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c651.dat
new file mode 100644
index 0000000..9e2112b
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c651.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c660.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c660.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c660.dat
new file mode 100644
index 0000000..d110ca5
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c660.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c671.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c671.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c671.dat
new file mode 100644
index 0000000..71e813d
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c671.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c680.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c680.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c680.dat
new file mode 100644
index 0000000..e7eb774
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c680.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c691.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c691.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c691.dat
new file mode 100644
index 0000000..5a8e4e8
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c691.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c6a0.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c6a0.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c6a0.dat
new file mode 100644
index 0000000..a471774
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c6a0.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c6b1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c6b1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c6b1.dat
new file mode 100644
index 0000000..7f4ceda
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c6b1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c6c0.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c6c0.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c6c0.dat
new file mode 100644
index 0000000..1bcdb60
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c6c0.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c6d1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c6d1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c6d1.dat
new file mode 100644
index 0000000..85c99cd
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c6d1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c6e0.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c6e0.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c6e0.dat
new file mode 100644
index 0000000..2f0985a
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c6e0.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c6f1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c6f1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c6f1.dat
new file mode 100644
index 0000000..5946ff2
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c6f1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c700.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c700.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c700.dat
new file mode 100644
index 0000000..85c4f03
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c700.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c71.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c71.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c71.dat
new file mode 100644
index 0000000..d0e76e4
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c71.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c711.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c711.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c711.dat
new file mode 100644
index 0000000..8b4739c
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c711.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c720.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c720.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c720.dat
new file mode 100644
index 0000000..6db9589
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c720.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c731.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c731.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c731.dat
new file mode 100644
index 0000000..3594901
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c731.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c740.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c740.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c740.dat
new file mode 100644
index 0000000..371cb48
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c740.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c751.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c751.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c751.dat
new file mode 100644
index 0000000..30ee05e
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c751.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c760.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c760.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c760.dat
new file mode 100644
index 0000000..9e2f194
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c760.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c771.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c771.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c771.dat
new file mode 100644
index 0000000..1006817
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c771.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c780.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c780.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c780.dat
new file mode 100644
index 0000000..114ffa5
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c780.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c791.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c791.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c791.dat
new file mode 100644
index 0000000..352a993
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c791.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c7a0.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c7a0.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c7a0.dat
new file mode 100644
index 0000000..443bbf6
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c7a0.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c7b1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c7b1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c7b1.dat
new file mode 100644
index 0000000..3b8e4c7
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c7b1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c7c0.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c7c0.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c7c0.dat
new file mode 100644
index 0000000..e208f21
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c7c0.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c7d1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c7d1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c7d1.dat
new file mode 100644
index 0000000..9ef1cb4
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c7d1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c7e1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c7e1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c7e1.dat
new file mode 100644
index 0000000..ad188f3
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c7e1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c7f1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c7f1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c7f1.dat
new file mode 100644
index 0000000..3f8cc3f
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c7f1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c801.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c801.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c801.dat
new file mode 100644
index 0000000..f91d8af
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c801.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c81.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c81.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c81.dat
new file mode 100644
index 0000000..f66a8d3
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c81.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c811.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c811.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c811.dat
new file mode 100644
index 0000000..5d469b6
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c811.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c821.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c821.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c821.dat
new file mode 100644
index 0000000..2573c79
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c821.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c831.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c831.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c831.dat
new file mode 100644
index 0000000..40fad46
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c831.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c841.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c841.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c841.dat
new file mode 100644
index 0000000..5ad0548
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c841.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c851.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c851.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c851.dat
new file mode 100644
index 0000000..dbfca69
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c851.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c861.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c861.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c861.dat
new file mode 100644
index 0000000..a631af0
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c861.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c871.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c871.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c871.dat
new file mode 100644
index 0000000..3b0b0c8
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c871.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c881.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c881.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c881.dat
new file mode 100644
index 0000000..e7cc3d3
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c881.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c891.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c891.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c891.dat
new file mode 100644
index 0000000..73d92bc
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c891.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c8a1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c8a1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c8a1.dat
new file mode 100644
index 0000000..85481b8
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c8a1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c8b1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c8b1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c8b1.dat
new file mode 100644
index 0000000..6562468
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c8b1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c8c1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c8c1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c8c1.dat
new file mode 100644
index 0000000..5880c80
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c8c1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c8d1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c8d1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c8d1.dat
new file mode 100644
index 0000000..32aa06b
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c8d1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c8e1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c8e1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c8e1.dat
new file mode 100644
index 0000000..52d3f53
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c8e1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c8f1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c8f1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c8f1.dat
new file mode 100644
index 0000000..0f512e2
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c8f1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c90.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c90.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c90.dat
new file mode 100644
index 0000000..e1551b0
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c90.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c901.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c901.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c901.dat
new file mode 100644
index 0000000..65cadbc
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c901.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c910.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c910.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c910.dat
new file mode 100644
index 0000000..3ebfbca
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c910.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c921.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c921.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c921.dat
new file mode 100644
index 0000000..9737b96
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c921.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c930.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c930.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c930.dat
new file mode 100644
index 0000000..5a0efed
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c930.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c941.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c941.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c941.dat
new file mode 100644
index 0000000..156caf6
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c941.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c950.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c950.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c950.dat
new file mode 100644
index 0000000..5c522ca
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c950.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c961.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c961.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c961.dat
new file mode 100644
index 0000000..e8bc859
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c961.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c970.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c970.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c970.dat
new file mode 100644
index 0000000..f9de69b
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c970.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c981.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c981.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c981.dat
new file mode 100644
index 0000000..faf6054
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c981.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c991.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c991.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c991.dat
new file mode 100644
index 0000000..149383b
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c991.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c9a1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c9a1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c9a1.dat
new file mode 100644
index 0000000..412ca0f
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c9a1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c9b1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c9b1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c9b1.dat
new file mode 100644
index 0000000..c893cdd
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c9b1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c9c1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c9c1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c9c1.dat
new file mode 100644
index 0000000..66894ac
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c9c1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c9d1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c9d1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c9d1.dat
new file mode 100644
index 0000000..70e8942
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c9d1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c9e1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c9e1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c9e1.dat
new file mode 100644
index 0000000..62dca9b
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c9e1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c9f0.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c9f0.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c9f0.dat
new file mode 100644
index 0000000..5ac3327
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c9f0.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ca01.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ca01.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ca01.dat
new file mode 100644
index 0000000..d56159c
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ca01.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ca1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ca1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ca1.dat
new file mode 100644
index 0000000..3e6aa7c
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ca1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ca10.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ca10.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ca10.dat
new file mode 100644
index 0000000..f867226
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ca10.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ca21.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ca21.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ca21.dat
new file mode 100644
index 0000000..edc8c3d
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ca21.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ca30.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ca30.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ca30.dat
new file mode 100644
index 0000000..6922753
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ca30.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ca41.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ca41.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ca41.dat
new file mode 100644
index 0000000..0f0c508
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ca41.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ca51.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ca51.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ca51.dat
new file mode 100644
index 0000000..0311923
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ca51.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ca60.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ca60.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ca60.dat
new file mode 100644
index 0000000..adcc3d4
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ca60.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ca71.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ca71.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ca71.dat
new file mode 100644
index 0000000..63038a9
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ca71.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ca81.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ca81.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ca81.dat
new file mode 100644
index 0000000..f5e607d
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ca81.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ca90.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ca90.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ca90.dat
new file mode 100644
index 0000000..b305261
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ca90.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/caa1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/caa1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/caa1.dat
new file mode 100644
index 0000000..c6aa340
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/caa1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cab0.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cab0.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cab0.dat
new file mode 100644
index 0000000..c4fe8ec
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cab0.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cac1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cac1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cac1.dat
new file mode 100644
index 0000000..56b7ed3
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cac1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cad1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cad1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cad1.dat
new file mode 100644
index 0000000..ab1f6b0
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cad1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cae1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cae1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cae1.dat
new file mode 100644
index 0000000..c85d14c
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cae1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/caf1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/caf1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/caf1.dat
new file mode 100644
index 0000000..8659305
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/caf1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cb01.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cb01.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cb01.dat
new file mode 100644
index 0000000..5d6cd59
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cb01.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cb1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cb1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cb1.dat
new file mode 100644
index 0000000..68b5a70
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cb1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cb11.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cb11.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cb11.dat
new file mode 100644
index 0000000..77e0bd4
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cb11.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cb20.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cb20.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cb20.dat
new file mode 100644
index 0000000..140015d
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cb20.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cb31.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cb31.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cb31.dat
new file mode 100644
index 0000000..b4e4532
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cb31.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cb41.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cb41.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cb41.dat
new file mode 100644
index 0000000..eb2ca37
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cb41.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cb51.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cb51.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cb51.dat
new file mode 100644
index 0000000..09bb658
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cb51.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cb60.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cb60.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cb60.dat
new file mode 100644
index 0000000..52a2be9
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cb60.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cb71.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cb71.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cb71.dat
new file mode 100644
index 0000000..e0de359
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cb71.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cb81.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cb81.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cb81.dat
new file mode 100644
index 0000000..a9701a3
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cb81.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cb91.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cb91.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cb91.dat
new file mode 100644
index 0000000..2435276
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cb91.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cba0.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cba0.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cba0.dat
new file mode 100644
index 0000000..7f0bb7e
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cba0.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cbb1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cbb1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cbb1.dat
new file mode 100644
index 0000000..c415259
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cbb1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cbc1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cbc1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cbc1.dat
new file mode 100644
index 0000000..cda0301
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cbc1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cbd1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cbd1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cbd1.dat
new file mode 100644
index 0000000..521df2c
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cbd1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cbe0.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cbe0.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cbe0.dat
new file mode 100644
index 0000000..cf999e5
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cbe0.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cbf1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cbf1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cbf1.dat
new file mode 100644
index 0000000..e410e17
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cbf1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cc0.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cc0.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cc0.dat
new file mode 100644
index 0000000..2268720
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cc0.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cc01.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cc01.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cc01.dat
new file mode 100644
index 0000000..2b4a906
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cc01.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cc11.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cc11.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cc11.dat
new file mode 100644
index 0000000..f7e2c00
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cc11.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cc20.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cc20.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cc20.dat
new file mode 100644
index 0000000..dd10fdc
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cc20.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cc31.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cc31.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cc31.dat
new file mode 100644
index 0000000..b85a465
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cc31.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cc40.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cc40.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cc40.dat
new file mode 100644
index 0000000..812f658
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cc40.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cc51.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cc51.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cc51.dat
new file mode 100644
index 0000000..1627482
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cc51.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cc61.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cc61.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cc61.dat
new file mode 100644
index 0000000..b3cc1e6
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cc61.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cc71.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cc71.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cc71.dat
new file mode 100644
index 0000000..3a12661
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cc71.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cc81.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cc81.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cc81.dat
new file mode 100644
index 0000000..04dbfa8
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cc81.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cc90.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cc90.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cc90.dat
new file mode 100644
index 0000000..6d5682e
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cc90.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cca1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cca1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cca1.dat
new file mode 100644
index 0000000..5c8329c
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cca1.dat differ


[2/4] flume git commit: FLUME-2050 Upgrade to Log4j 2

Posted by rg...@apache.org.
http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ccb1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ccb1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ccb1.dat
new file mode 100644
index 0000000..b19feeb
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ccb1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ccc1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ccc1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ccc1.dat
new file mode 100644
index 0000000..0a5c034
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ccc1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cd1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cd1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cd1.dat
new file mode 100644
index 0000000..d919a1b
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cd1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ce1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ce1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ce1.dat
new file mode 100644
index 0000000..299e0c4
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/ce1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cf0.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cf0.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cf0.dat
new file mode 100644
index 0000000..15b44a0
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/cf0.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2ef0.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2ef0.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2ef0.dat
new file mode 100644
index 0000000..56231b1
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2ef0.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2f01.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2f01.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2f01.dat
new file mode 100644
index 0000000..c23bb2d
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2f01.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2f10.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2f10.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2f10.dat
new file mode 100644
index 0000000..56231b1
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2f10.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2f21.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2f21.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2f21.dat
new file mode 100644
index 0000000..c23bb2d
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2f21.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2f30.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2f30.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2f30.dat
new file mode 100644
index 0000000..39ba0e2
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2f30.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2f40.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2f40.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2f40.dat
new file mode 100644
index 0000000..898f6a1
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2f40.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2f50.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2f50.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2f50.dat
new file mode 100644
index 0000000..fd69350
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2f50.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2f61.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2f61.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2f61.dat
new file mode 100644
index 0000000..762cc2a
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2f61.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2f71.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2f71.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2f71.dat
new file mode 100644
index 0000000..762cc2a
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2f71.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2f80.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2f80.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2f80.dat
new file mode 100644
index 0000000..898f6a1
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2f80.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2f90.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2f90.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2f90.dat
new file mode 100644
index 0000000..fd69350
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2f90.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2fa1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2fa1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2fa1.dat
new file mode 100644
index 0000000..762cc2a
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2fa1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2fb0.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2fb0.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2fb0.dat
new file mode 100644
index 0000000..898f6a1
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2fb0.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2fc0.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2fc0.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2fc0.dat
new file mode 100644
index 0000000..2c44876
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2fc0.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2fd1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2fd1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2fd1.dat
new file mode 100644
index 0000000..b29acd7
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2fd1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2fe0.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2fe0.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2fe0.dat
new file mode 100644
index 0000000..2c44876
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2fe0.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2ff1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2ff1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2ff1.dat
new file mode 100644
index 0000000..b29acd7
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d2ff1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3000.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3000.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3000.dat
new file mode 100644
index 0000000..9ae5d87
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3000.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3010.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3010.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3010.dat
new file mode 100644
index 0000000..fd69350
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3010.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3020.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3020.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3020.dat
new file mode 100644
index 0000000..9ae5d87
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3020.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3031.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3031.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3031.dat
new file mode 100644
index 0000000..762cc2a
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3031.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3041.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3041.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3041.dat
new file mode 100644
index 0000000..762cc2a
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3041.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3050.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3050.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3050.dat
new file mode 100644
index 0000000..fd69350
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3050.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3060.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3060.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3060.dat
new file mode 100644
index 0000000..9ae5d87
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3060.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3071.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3071.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3071.dat
new file mode 100644
index 0000000..762cc2a
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3071.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3080.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3080.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3080.dat
new file mode 100644
index 0000000..fd69350
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3080.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3090.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3090.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3090.dat
new file mode 100644
index 0000000..2c44876
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3090.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d30a1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d30a1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d30a1.dat
new file mode 100644
index 0000000..b29acd7
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d30a1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d30b0.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d30b0.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d30b0.dat
new file mode 100644
index 0000000..2e0c368
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d30b0.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d30c1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d30c1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d30c1.dat
new file mode 100644
index 0000000..b29acd7
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d30c1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d30d0.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d30d0.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d30d0.dat
new file mode 100644
index 0000000..fd69350
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d30d0.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d30e0.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d30e0.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d30e0.dat
new file mode 100644
index 0000000..fd69350
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d30e0.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d30f0.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d30f0.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d30f0.dat
new file mode 100644
index 0000000..9ae5d87
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d30f0.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3101.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3101.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3101.dat
new file mode 100644
index 0000000..762cc2a
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3101.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3111.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3111.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3111.dat
new file mode 100644
index 0000000..762cc2a
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3111.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3120.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3120.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3120.dat
new file mode 100644
index 0000000..fd69350
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3120.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3130.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3130.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3130.dat
new file mode 100644
index 0000000..9ae5d87
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3130.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3141.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3141.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3141.dat
new file mode 100644
index 0000000..762cc2a
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3141.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3150.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3150.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3150.dat
new file mode 100644
index 0000000..fd69350
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3150.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3160.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3160.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3160.dat
new file mode 100644
index 0000000..2e0c368
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3160.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3171.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3171.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3171.dat
new file mode 100644
index 0000000..dc7c10e
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3171.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3180.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3180.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3180.dat
new file mode 100644
index 0000000..5a360d8
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3180.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3191.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3191.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3191.dat
new file mode 100644
index 0000000..dc7c10e
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3191.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d31a0.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d31a0.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d31a0.dat
new file mode 100644
index 0000000..898f6a1
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d31a0.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d31b0.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d31b0.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d31b0.dat
new file mode 100644
index 0000000..fd69350
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d31b0.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d31c0.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d31c0.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d31c0.dat
new file mode 100644
index 0000000..9ae5d87
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d31c0.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d31d1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d31d1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d31d1.dat
new file mode 100644
index 0000000..762cc2a
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d31d1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d31e1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d31e1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d31e1.dat
new file mode 100644
index 0000000..762cc2a
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d31e1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d31f0.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d31f0.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d31f0.dat
new file mode 100644
index 0000000..fd69350
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d31f0.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3200.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3200.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3200.dat
new file mode 100644
index 0000000..9ae5d87
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3200.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3211.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3211.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3211.dat
new file mode 100644
index 0000000..762cc2a
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3211.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3220.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3220.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3220.dat
new file mode 100644
index 0000000..fd69350
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3220.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3230.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3230.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3230.dat
new file mode 100644
index 0000000..bcd2bd9
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3230.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3241.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3241.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3241.dat
new file mode 100644
index 0000000..48501fa
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3241.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3250.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3250.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3250.dat
new file mode 100644
index 0000000..bcd2bd9
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3250.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3261.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3261.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3261.dat
new file mode 100644
index 0000000..48501fa
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3261.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3270.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3270.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3270.dat
new file mode 100644
index 0000000..30c6d3a
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3270.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3280.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3280.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3280.dat
new file mode 100644
index 0000000..fd69350
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3280.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3290.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3290.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3290.dat
new file mode 100644
index 0000000..9ae5d87
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3290.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d32a1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d32a1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d32a1.dat
new file mode 100644
index 0000000..762cc2a
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d32a1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d32b1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d32b1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d32b1.dat
new file mode 100644
index 0000000..762cc2a
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d32b1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d32c0.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d32c0.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d32c0.dat
new file mode 100644
index 0000000..fd69350
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d32c0.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d32d0.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d32d0.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d32d0.dat
new file mode 100644
index 0000000..9ae5d87
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d32d0.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d32e1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d32e1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d32e1.dat
new file mode 100644
index 0000000..762cc2a
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d32e1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d32f0.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d32f0.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d32f0.dat
new file mode 100644
index 0000000..fd69350
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d32f0.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3300.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3300.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3300.dat
new file mode 100644
index 0000000..2c44876
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3300.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3311.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3311.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3311.dat
new file mode 100644
index 0000000..b29acd7
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3311.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3320.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3320.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3320.dat
new file mode 100644
index 0000000..2e0c368
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3320.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3331.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3331.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3331.dat
new file mode 100644
index 0000000..b29acd7
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3331.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3340.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3340.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3340.dat
new file mode 100644
index 0000000..fd69350
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3340.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3350.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3350.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3350.dat
new file mode 100644
index 0000000..fd69350
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3350.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3360.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3360.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3360.dat
new file mode 100644
index 0000000..9ae5d87
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3360.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3371.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3371.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3371.dat
new file mode 100644
index 0000000..762cc2a
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3371.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3381.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3381.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3381.dat
new file mode 100644
index 0000000..762cc2a
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3381.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3390.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3390.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3390.dat
new file mode 100644
index 0000000..fd69350
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3390.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d33a0.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d33a0.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d33a0.dat
new file mode 100644
index 0000000..9ae5d87
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d33a0.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d33b1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d33b1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d33b1.dat
new file mode 100644
index 0000000..762cc2a
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d33b1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d33c0.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d33c0.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d33c0.dat
new file mode 100644
index 0000000..fd69350
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d33c0.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d33d0.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d33d0.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d33d0.dat
new file mode 100644
index 0000000..9ae5d87
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d33d0.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d33e1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d33e1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d33e1.dat
new file mode 100644
index 0000000..762cc2a
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d33e1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d33f0.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d33f0.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d33f0.dat
new file mode 100644
index 0000000..9ae5d87
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d33f0.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3401.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3401.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3401.dat
new file mode 100644
index 0000000..762cc2a
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3401.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3410.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3410.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3410.dat
new file mode 100644
index 0000000..9ae5d87
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3410.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3420.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3420.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3420.dat
new file mode 100644
index 0000000..fd69350
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3420.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3430.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3430.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3430.dat
new file mode 100644
index 0000000..9ae5d87
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3430.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3441.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3441.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3441.dat
new file mode 100644
index 0000000..762cc2a
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3441.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3451.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3451.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3451.dat
new file mode 100644
index 0000000..762cc2a
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3451.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3460.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3460.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3460.dat
new file mode 100644
index 0000000..fd69350
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3460.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3470.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3470.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3470.dat
new file mode 100644
index 0000000..9ae5d87
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3470.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3481.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3481.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3481.dat
new file mode 100644
index 0000000..762cc2a
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3481.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3490.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3490.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3490.dat
new file mode 100644
index 0000000..fd69350
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3490.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d34a0.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d34a0.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d34a0.dat
new file mode 100644
index 0000000..da45ad5
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d34a0.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d34b1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d34b1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d34b1.dat
new file mode 100644
index 0000000..b131dda
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d34b1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d34c0.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d34c0.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d34c0.dat
new file mode 100644
index 0000000..dc784ad
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d34c0.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d34d1.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d34d1.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d34d1.dat
new file mode 100644
index 0000000..b131dda
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d34d1.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d34e0.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d34e0.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d34e0.dat
new file mode 100644
index 0000000..bcd2bd9
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d34e0.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d34f0.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d34f0.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d34f0.dat
new file mode 100644
index 0000000..fd69350
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d34f0.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3500.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3500.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3500.dat
new file mode 100644
index 0000000..9ae5d87
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3500.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3511.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3511.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3511.dat
new file mode 100644
index 0000000..762cc2a
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3511.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3521.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3521.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3521.dat
new file mode 100644
index 0000000..762cc2a
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3521.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3530.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3530.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3530.dat
new file mode 100644
index 0000000..fd69350
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3530.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3540.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3540.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3540.dat
new file mode 100644
index 0000000..9ae5d87
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3540.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3551.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3551.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3551.dat
new file mode 100644
index 0000000..762cc2a
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3551.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3560.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3560.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3560.dat
new file mode 100644
index 0000000..fd69350
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/d3560.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/service.properties
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/service.properties b/flume-ng-sinks/flume-hive-sink/metastore_db/service.properties
new file mode 100644
index 0000000..7fc0bed
--- /dev/null
+++ b/flume-ng-sinks/flume-hive-sink/metastore_db/service.properties
@@ -0,0 +1,23 @@
+#/Users/rgoers/projects/apache/flume/flume/flume-ng-sinks/flume-hive-sink/metastore_db
+# ********************************************************************
+# ***                Please do NOT edit this file.                 ***
+# *** CHANGING THE CONTENT OF THIS FILE MAY CAUSE DATA CORRUPTION. ***
+# ********************************************************************
+#Tue Oct 31 11:37:53 MST 2017
+SysschemasIndex2Identifier=225
+SyscolumnsIdentifier=144
+SysconglomeratesIndex1Identifier=49
+SysconglomeratesIdentifier=32
+SyscolumnsIndex2Identifier=177
+SysschemasIndex1Identifier=209
+SysconglomeratesIndex3Identifier=81
+SystablesIndex2Identifier=129
+SyscolumnsIndex1Identifier=161
+derby.serviceProtocol=org.apache.derby.database.Database
+SysschemasIdentifier=192
+derby.storage.propertiesId=16
+SysconglomeratesIndex2Identifier=65
+derby.serviceLocale=en_US
+SystablesIdentifier=96
+SystablesIndex1Identifier=113
+#--- last line, don't put anything after this line ---

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/pom.xml
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/pom.xml b/flume-ng-sinks/flume-hive-sink/pom.xml
index 7cc518e..211397d 100644
--- a/flume-ng-sinks/flume-hive-sink/pom.xml
+++ b/flume-ng-sinks/flume-hive-sink/pom.xml
@@ -138,8 +138,26 @@ limitations under the License.
     </dependency>
 
     <dependency>
-      <groupId>org.slf4j</groupId>
-      <artifactId>slf4j-log4j12</artifactId>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-api</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-core</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-slf4j-impl</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-1.2-api</artifactId>
       <scope>test</scope>
     </dependency>
 

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/src/test/resources/log4j.properties
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/src/test/resources/log4j.properties b/flume-ng-sinks/flume-hive-sink/src/test/resources/log4j.properties
deleted file mode 100644
index 252b5ea..0000000
--- a/flume-ng-sinks/flume-hive-sink/src/test/resources/log4j.properties
+++ /dev/null
@@ -1,26 +0,0 @@
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-#   http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-# KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-
-log4j.rootLogger = INFO, out
-
-log4j.appender.out = org.apache.log4j.ConsoleAppender
-log4j.appender.out.layout = org.apache.log4j.PatternLayout
-log4j.appender.out.layout.ConversionPattern = %d (%t) [%p - %l] %m%n
-
-log4j.logger.org.apache.flume = DEBUG
-log4j.logger.org.apache.hadoop = WARN
-log4j.logger.org.mortbay = WARN

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/src/test/resources/log4j2.xml
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/src/test/resources/log4j2.xml b/flume-ng-sinks/flume-hive-sink/src/test/resources/log4j2.xml
new file mode 100644
index 0000000..91a23f8
--- /dev/null
+++ b/flume-ng-sinks/flume-hive-sink/src/test/resources/log4j2.xml
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+-->
+<Configuration status="OFF">
+  <Appenders>
+    <Console name="Console" target="SYSTEM_OUT">
+      <PatternLayout pattern="%d (%t) [%p - %l] %m%n" />
+    </Console>
+  </Appenders>
+  <Loggers>
+    <Logger name="org.apache.flume" level="DEBUG"/>
+    <Logger name="org.apache.hadoop" level="WARN"/>
+    <Logger name="org.mortbay" level="WARN"/>
+    <Root level="INFO">
+      <AppenderRef ref="Console" />
+    </Root>
+  </Loggers>
+</Configuration>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-http-sink/pom.xml
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-http-sink/pom.xml b/flume-ng-sinks/flume-http-sink/pom.xml
index 52b038a..687a02b 100644
--- a/flume-ng-sinks/flume-http-sink/pom.xml
+++ b/flume-ng-sinks/flume-http-sink/pom.xml
@@ -101,8 +101,25 @@ limitations under the License.
     </dependency>
 
     <dependency>
-      <groupId>org.slf4j</groupId>
-      <artifactId>slf4j-log4j12</artifactId>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-api</artifactId>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-core</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-slf4j-impl</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-1.2-api</artifactId>
       <scope>test</scope>
     </dependency>
 

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-http-sink/src/main/java/org/apache/flume/sink/http/HttpSink.java
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-http-sink/src/main/java/org/apache/flume/sink/http/HttpSink.java b/flume-ng-sinks/flume-http-sink/src/main/java/org/apache/flume/sink/http/HttpSink.java
index b9c42ed..8fd2e4c 100644
--- a/flume-ng-sinks/flume-http-sink/src/main/java/org/apache/flume/sink/http/HttpSink.java
+++ b/flume-ng-sinks/flume-http-sink/src/main/java/org/apache/flume/sink/http/HttpSink.java
@@ -27,7 +27,8 @@ import org.apache.flume.Transaction;
 import org.apache.flume.conf.Configurable;
 import org.apache.flume.instrumentation.SinkCounter;
 import org.apache.flume.sink.AbstractSink;
-import org.apache.log4j.Logger;
+import org.apache.logging.log4j.LogManager;
+import org.apache.logging.log4j.Logger;
 
 import java.io.IOException;
 import java.io.OutputStream;
@@ -48,7 +49,7 @@ import java.util.Map;
 public class HttpSink extends AbstractSink implements Configurable {
 
   /** Class logger. */
-  private static final Logger LOG = Logger.getLogger(HttpSink.class);
+  private static final Logger LOG = LogManager.getLogger(HttpSink.class);
 
   /** Lowest valid HTTP status code. */
   private static final int HTTP_STATUS_CONTINUE = 100;

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-http-sink/src/test/resources/log4j.properties
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-http-sink/src/test/resources/log4j.properties b/flume-ng-sinks/flume-http-sink/src/test/resources/log4j.properties
deleted file mode 100644
index 783022d..0000000
--- a/flume-ng-sinks/flume-http-sink/src/test/resources/log4j.properties
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
-* Licensed to the Apache Software Foundation (ASF) under one
-* or more contributor license agreements.  See the NOTICE file
-* distributed with this work for additional information
-* regarding copyright ownership.  The ASF licenses this file
-* to you under the Apache License, Version 2.0 (the
-* "License"); you may not use this file except in compliance
-* with the License.  You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing,
-* software distributed under the License is distributed on an
-* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-* KIND, either express or implied.  See the License for the
-* specific language governing permissions and limitations
-* under the License.
-*/
-log4j.rootLogger = ALL, stdout
-
-log4j.appender.stdout=org.apache.log4j.ConsoleAppender
-log4j.appender.stdout.Target=System.out
-log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
-
-log4j.appender.flume = org.apache.flume.clients.log4jappender.Log4jAppender
-log4j.appender.flume.Hostname = 127.0.0.1
-log4j.appender.flume.Port = 4141
-log4j.appender.flume.layout=org.apache.log4j.PatternLayout

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-http-sink/src/test/resources/log4j2.xml
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-http-sink/src/test/resources/log4j2.xml b/flume-ng-sinks/flume-http-sink/src/test/resources/log4j2.xml
new file mode 100644
index 0000000..d539bdb
--- /dev/null
+++ b/flume-ng-sinks/flume-http-sink/src/test/resources/log4j2.xml
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+-->
+<Configuration status="OFF">
+  <Appenders>
+    <Console name="Console" target="SYSTEM_OUT">
+      <PatternLayout pattern="%m%n" />
+    </Console>
+  </Appenders>
+  <Loggers>
+    <Root level="ALL">
+      <AppenderRef ref="Console" />
+    </Root>
+  </Loggers>
+</Configuration>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-irc-sink/pom.xml
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-irc-sink/pom.xml b/flume-ng-sinks/flume-irc-sink/pom.xml
index f43071d..0f40c8e 100644
--- a/flume-ng-sinks/flume-irc-sink/pom.xml
+++ b/flume-ng-sinks/flume-irc-sink/pom.xml
@@ -73,8 +73,26 @@ limitations under the License.
     </dependency>
 
     <dependency>
-      <groupId>org.slf4j</groupId>
-      <artifactId>slf4j-log4j12</artifactId>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-api</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-core</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-slf4j-impl</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-1.2-api</artifactId>
       <scope>test</scope>
     </dependency>
 

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-ng-elasticsearch-sink/pom.xml
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-ng-elasticsearch-sink/pom.xml b/flume-ng-sinks/flume-ng-elasticsearch-sink/pom.xml
index 10bde66..1df26b8 100644
--- a/flume-ng-sinks/flume-ng-elasticsearch-sink/pom.xml
+++ b/flume-ng-sinks/flume-ng-elasticsearch-sink/pom.xml
@@ -68,8 +68,26 @@
     </dependency>
 
     <dependency>
-      <groupId>org.slf4j</groupId>
-      <artifactId>slf4j-log4j12</artifactId>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-api</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-core</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-slf4j-impl</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-1.2-api</artifactId>
       <scope>test</scope>
     </dependency>
 

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-ng-elasticsearch-sink/src/test/resources/log4j.properties
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-ng-elasticsearch-sink/src/test/resources/log4j.properties b/flume-ng-sinks/flume-ng-elasticsearch-sink/src/test/resources/log4j.properties
deleted file mode 100644
index 9036aca..0000000
--- a/flume-ng-sinks/flume-ng-elasticsearch-sink/src/test/resources/log4j.properties
+++ /dev/null
@@ -1,25 +0,0 @@
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-#  http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-# KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-
-
-log4j.rootLogger = DEBUG, out
-
-log4j.appender.out = org.apache.log4j.ConsoleAppender
-log4j.appender.out.layout = org.apache.log4j.PatternLayout
-log4j.appender.out.layout.ConversionPattern = %d (%t) [%p - %l] %m%n
-
-log4j.logger.org.apache.flume = DEBUG

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-ng-elasticsearch-sink/src/test/resources/log4j2.xml
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-ng-elasticsearch-sink/src/test/resources/log4j2.xml b/flume-ng-sinks/flume-ng-elasticsearch-sink/src/test/resources/log4j2.xml
new file mode 100644
index 0000000..5676916
--- /dev/null
+++ b/flume-ng-sinks/flume-ng-elasticsearch-sink/src/test/resources/log4j2.xml
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+-->
+<Configuration status="OFF">
+  <Appenders>
+    <Console name="Console" target="SYSTEM_OUT">
+      <PatternLayout pattern="%d (%t) [%p - %l] %m%n" />
+    </Console>
+  </Appenders>
+  <Loggers>
+    <Logger name="org.apache.flume" level="DEBUG"/>
+    <Root level="DEBUG">
+      <AppenderRef ref="Console" />
+    </Root>
+  </Loggers>
+</Configuration>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-ng-hbase-sink/pom.xml
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-ng-hbase-sink/pom.xml b/flume-ng-sinks/flume-ng-hbase-sink/pom.xml
index 1184275..b5d8243 100644
--- a/flume-ng-sinks/flume-ng-hbase-sink/pom.xml
+++ b/flume-ng-sinks/flume-ng-hbase-sink/pom.xml
@@ -68,8 +68,26 @@
     </dependency>
 
     <dependency>
-      <groupId>org.slf4j</groupId>
-      <artifactId>slf4j-log4j12</artifactId>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-api</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-core</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-slf4j-impl</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-1.2-api</artifactId>
       <scope>test</scope>
     </dependency>
 

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-ng-kafka-sink/pom.xml
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-ng-kafka-sink/pom.xml b/flume-ng-sinks/flume-ng-kafka-sink/pom.xml
index e4cad81..39dd3bd 100644
--- a/flume-ng-sinks/flume-ng-kafka-sink/pom.xml
+++ b/flume-ng-sinks/flume-ng-kafka-sink/pom.xml
@@ -86,6 +86,30 @@
       <version>${kafka.version}</version>
     </dependency>
 
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-api</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-core</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-slf4j-impl</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-1.2-api</artifactId>
+      <scope>test</scope>
+    </dependency>
+
   </dependencies>
 
 </project>

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-ng-kafka-sink/src/test/resources/log4j.properties
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-ng-kafka-sink/src/test/resources/log4j.properties b/flume-ng-sinks/flume-ng-kafka-sink/src/test/resources/log4j.properties
deleted file mode 100644
index b86600b..0000000
--- a/flume-ng-sinks/flume-ng-kafka-sink/src/test/resources/log4j.properties
+++ /dev/null
@@ -1,78 +0,0 @@
-# Licensed to the Apache Software Foundation (ASF) under one or more
-# contributor license agreements.  See the NOTICE file distributed with
-# this work for additional information regarding copyright ownership.
-# The ASF licenses this file to You under the Apache License, Version 2.0
-# (the "License"); you may not use this file except in compliance with
-# the License.  You may obtain a copy of the License at
-#
-#    http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
-kafka.logs.dir=target/logs
-
-log4j.rootLogger=INFO, stdout
-
-log4j.appender.stdout=org.apache.log4j.ConsoleAppender
-log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
-log4j.appender.stdout.layout.ConversionPattern=[%d] %p %m (%c)%n
-
-log4j.appender.kafkaAppender=org.apache.log4j.DailyRollingFileAppender
-log4j.appender.kafkaAppender.DatePattern='.'yyyy-MM-dd-HH
-log4j.appender.kafkaAppender.File=${kafka.logs.dir}/server.log
-log4j.appender.kafkaAppender.layout=org.apache.log4j.PatternLayout
-log4j.appender.kafkaAppender.layout.ConversionPattern=[%d] %p %m (%c)%n
-
-log4j.appender.stateChangeAppender=org.apache.log4j.DailyRollingFileAppender
-log4j.appender.stateChangeAppender.DatePattern='.'yyyy-MM-dd-HH
-log4j.appender.stateChangeAppender.File=${kafka.logs.dir}/state-change.log
-log4j.appender.stateChangeAppender.layout=org.apache.log4j.PatternLayout
-log4j.appender.stateChangeAppender.layout.ConversionPattern=[%d] %p %m (%c)%n
-
-log4j.appender.requestAppender=org.apache.log4j.DailyRollingFileAppender
-log4j.appender.requestAppender.DatePattern='.'yyyy-MM-dd-HH
-log4j.appender.requestAppender.File=${kafka.logs.dir}/kafka-request.log
-log4j.appender.requestAppender.layout=org.apache.log4j.PatternLayout
-log4j.appender.requestAppender.layout.ConversionPattern=[%d] %p %m (%c)%n
-
-log4j.appender.cleanerAppender=org.apache.log4j.DailyRollingFileAppender
-log4j.appender.cleanerAppender.DatePattern='.'yyyy-MM-dd-HH
-log4j.appender.cleanerAppender.File=${kafka.logs.dir}/log-cleaner.log
-log4j.appender.cleanerAppender.layout=org.apache.log4j.PatternLayout
-log4j.appender.cleanerAppender.layout.ConversionPattern=[%d] %p %m (%c)%n
-
-log4j.appender.controllerAppender=org.apache.log4j.DailyRollingFileAppender
-log4j.appender.controllerAppender.DatePattern='.'yyyy-MM-dd-HH
-log4j.appender.controllerAppender.File=${kafka.logs.dir}/controller.log
-log4j.appender.controllerAppender.layout=org.apache.log4j.PatternLayout
-log4j.appender.controllerAppender.layout.ConversionPattern=[%d] %p %m (%c)%n
-
-# Turn on all our debugging info
-#log4j.logger.kafka.producer.async.DefaultEventHandler=DEBUG, kafkaAppender
-#log4j.logger.kafka.client.ClientUtils=DEBUG, kafkaAppender
-#log4j.logger.kafka.perf=DEBUG, kafkaAppender
-#log4j.logger.kafka.perf.ProducerPerformance$ProducerThread=DEBUG, kafkaAppender
-#log4j.logger.org.I0Itec.zkclient.ZkClient=DEBUG
-log4j.logger.kafka=INFO, kafkaAppender
-
-log4j.logger.kafka.network.RequestChannel$=WARN, requestAppender
-log4j.additivity.kafka.network.RequestChannel$=false
-
-#log4j.logger.kafka.network.Processor=TRACE, requestAppender
-#log4j.logger.kafka.server.KafkaApis=TRACE, requestAppender
-#log4j.additivity.kafka.server.KafkaApis=false
-log4j.logger.kafka.request.logger=WARN, requestAppender
-log4j.additivity.kafka.request.logger=false
-
-log4j.logger.kafka.controller=TRACE, controllerAppender
-log4j.additivity.kafka.controller=false
-
-log4j.logger.kafka.log.LogCleaner=INFO, cleanerAppender
-log4j.additivity.kafka.log.LogCleaner=false
-
-log4j.logger.state.change.logger=TRACE, stateChangeAppender
-log4j.additivity.state.change.logger=false

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-ng-kafka-sink/src/test/resources/log4j2.xml
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-ng-kafka-sink/src/test/resources/log4j2.xml b/flume-ng-sinks/flume-ng-kafka-sink/src/test/resources/log4j2.xml
new file mode 100644
index 0000000..1263a38
--- /dev/null
+++ b/flume-ng-sinks/flume-ng-kafka-sink/src/test/resources/log4j2.xml
@@ -0,0 +1,72 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+-->
+<Configuration status="OFF">
+  <Properties>
+    <Property name="kafka.logs.dir">target/logs</Property>
+  </Properties>
+  <Appenders>
+    <Console name="Console" target="SYSTEM_OUT">
+      <PatternLayout pattern="%d (%t) [%p - %l] %m%n" />
+    </Console>
+    <RollingFile name="kafka" fileName="${kafka.logs.dir}/server.log">
+      <PatternLayout pattern="[%d] %p %m (%c)%n" />
+      <CronTriggeringPolicy schedule="0 0 0 * * ?"/>
+    </RollingFile>
+    <RollingFile name="stateChange" fileName="${kafka.logs.dir}/state-change.log">
+      <PatternLayout pattern="[%d] %p %m (%c)%n" />
+      <CronTriggeringPolicy schedule="0 0 0 * * ?"/>
+    </RollingFile>
+    <RollingFile name="request" fileName="${kafka.logs.dir}/kafka-request.log">
+      <PatternLayout pattern="[%d] %p %m (%c)%n" />
+      <CronTriggeringPolicy schedule="0 0 0 * * ?"/>
+    </RollingFile>
+    <RollingFile name="cleaner" fileName="${kafka.logs.dir}/log-cleaner.log">
+      <PatternLayout pattern="[%d] %p %m (%c)%n" />
+      <CronTriggeringPolicy schedule="0 0 0 * * ?"/>
+    </RollingFile>
+    <RollingFile name="controller" fileName="${kafka.logs.dir}/controller.log">
+      <PatternLayout pattern="[%d] %p %m (%c)%n" />
+      <CronTriggeringPolicy schedule="0 0 0 * * ?"/>
+    </RollingFile>
+  </Appenders>
+
+  <Loggers>
+    <Logger name="kafka" level="info">
+      <AppenderRef ref="kafka"/>
+    </Logger>
+    <Logger name="kafka.network.RequestChannel.*" level="WARN" additivity="false">
+      <AppenderRef ref="request"/>
+    </Logger>
+    <Logger name="kafka.request.logger" level="WARN" additivity="false">
+      <AppenderRef ref="request"/>
+    </Logger>
+    <Logger name="kafka.controller" level="TRACE" additivity="false">
+      <AppenderRef ref="controller"/>
+    </Logger>
+    <Logger name="kafka.log.cleaner" level="INFO" additivity="false">
+      <AppenderRef ref="cleaner"/>
+    </Logger>
+    <Logger name="state.change.logger" level="TRACE" additivity="false">
+      <AppenderRef ref="stateChange"/>
+    </Logger>
+    <Root level="INFO">
+      <AppenderRef ref="Console" />
+    </Root>
+  </Loggers>
+</Configuration>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-ng-morphline-solr-sink/pom.xml
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-ng-morphline-solr-sink/pom.xml b/flume-ng-sinks/flume-ng-morphline-solr-sink/pom.xml
index e41adfc..84ddf94 100644
--- a/flume-ng-sinks/flume-ng-morphline-solr-sink/pom.xml
+++ b/flume-ng-sinks/flume-ng-morphline-solr-sink/pom.xml
@@ -61,13 +61,6 @@ limitations under the License.
       <optional>true</optional>
     </dependency>
 
-    <dependency>
-      <groupId>org.slf4j</groupId>
-      <artifactId>jcl-over-slf4j</artifactId>
-      <version>${slf4j.version}</version> <!-- flume provides 1.7.2 and solr depends on 1.6.4 -->
-      <scope>provided</scope>
-    </dependency>
-
     <dependency> <!-- see http://lucene.apache.org/solr -->
       <groupId>org.apache.solr</groupId>
       <artifactId>solr-test-framework</artifactId>
@@ -90,6 +83,36 @@ limitations under the License.
     </dependency>
 
     <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-api</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-core</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-jcl</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-slf4j-impl</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-1.2-api</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
       <scope>test</scope>

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-ng-morphline-solr-sink/src/test/resources/log4j.properties
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-ng-morphline-solr-sink/src/test/resources/log4j.properties b/flume-ng-sinks/flume-ng-morphline-solr-sink/src/test/resources/log4j.properties
deleted file mode 100644
index 4bfd3fc..0000000
--- a/flume-ng-sinks/flume-ng-morphline-solr-sink/src/test/resources/log4j.properties
+++ /dev/null
@@ -1,34 +0,0 @@
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-#  http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-# KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-log4j.rootLogger=WARN, A1
-
-log4j.logger.org.apache.flume.sink=INFO
-#log4j.logger.org.apache.flume.sink.solr=DEBUG
-log4j.logger.org.apache.solr=INFO
-#log4j.logger.org.apache.solr.hadoop=DEBUG
-log4j.logger.org.kitesdk.morphline=DEBUG
-log4j.logger.org.apache.solr.morphline=DEBUG
-log4j.logger.org.apache.solr.update.processor.LogUpdateProcessor=WARN
-log4j.logger.org.apache.solr.core.SolrCore=WARN
-log4j.logger.org.apache.solr.search.SolrIndexSearcher=ERROR
-
-# A1 is set to be a ConsoleAppender.
-log4j.appender.A1=org.apache.log4j.ConsoleAppender
-
-# A1 uses PatternLayout.
-log4j.appender.A1.layout=org.apache.log4j.PatternLayout
-log4j.appender.A1.layout.ConversionPattern=%-4r [%t] %-5p %c %x - %m%n

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-ng-morphline-solr-sink/src/test/resources/log4j2.xml
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-ng-morphline-solr-sink/src/test/resources/log4j2.xml b/flume-ng-sinks/flume-ng-morphline-solr-sink/src/test/resources/log4j2.xml
new file mode 100644
index 0000000..61de228
--- /dev/null
+++ b/flume-ng-sinks/flume-ng-morphline-solr-sink/src/test/resources/log4j2.xml
@@ -0,0 +1,38 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+-->
+<Configuration status="OFF">
+  <Appenders>
+    <Console name="Console" target="SYSTEM_OUT">
+      <PatternLayout pattern="%-4r [%t] %-5p %c %x - %m%n" />
+    </Console>
+  </Appenders>
+  <Loggers>
+    <Logger name="org.apache.flume.sink" level="INFO"/>
+    <Logger name="org.apache.solr" level="DEBUG"/>
+    <Logger name="org.kitesdk.morphline" level="DEBUG"/>
+    <Logger name="org.apache.solr.morphline" level="DEBUG"/>
+    <Logger name="org.apache.solr" level="DEBUG"/>
+    <Logger name="org.apache.solr.update.processor.LogUpdateProcessor" level="WARN"/>
+    <Logger name="org.apache.solr.core.SolrCore" level="WARN"/>
+    <Logger name="org.apache.solr.search.SolrIndexSearcher" level="ERROR"/>
+    <Root level="WARN">
+      <AppenderRef ref="Console" />
+    </Root>
+  </Loggers>
+</Configuration>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sources/flume-jms-source/pom.xml
----------------------------------------------------------------------
diff --git a/flume-ng-sources/flume-jms-source/pom.xml b/flume-ng-sources/flume-jms-source/pom.xml
index 555f36c..fb2eb76 100644
--- a/flume-ng-sources/flume-jms-source/pom.xml
+++ b/flume-ng-sources/flume-jms-source/pom.xml
@@ -65,8 +65,26 @@ limitations under the License.
     </dependency>
 
     <dependency>
-      <groupId>org.slf4j</groupId>
-      <artifactId>slf4j-log4j12</artifactId>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-api</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-core</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-slf4j-impl</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-1.2-api</artifactId>
       <scope>test</scope>
     </dependency>
 

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sources/flume-kafka-source/pom.xml
----------------------------------------------------------------------
diff --git a/flume-ng-sources/flume-kafka-source/pom.xml b/flume-ng-sources/flume-kafka-source/pom.xml
index ae8004f..af69c03 100644
--- a/flume-ng-sources/flume-kafka-source/pom.xml
+++ b/flume-ng-sources/flume-kafka-source/pom.xml
@@ -61,6 +61,12 @@
     <dependency>
       <groupId>org.apache.zookeeper</groupId>
       <artifactId>zookeeper</artifactId>
+      <exclusions>
+        <exclusion>
+          <groupId>log4j</groupId>
+          <artifactId>log4j</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
     <dependency>
       <groupId>org.mockito</groupId>

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sources/flume-kafka-source/src/test/resources/log4j.properties
----------------------------------------------------------------------
diff --git a/flume-ng-sources/flume-kafka-source/src/test/resources/log4j.properties b/flume-ng-sources/flume-kafka-source/src/test/resources/log4j.properties
deleted file mode 100644
index 78b1067..0000000
--- a/flume-ng-sources/flume-kafka-source/src/test/resources/log4j.properties
+++ /dev/null
@@ -1,25 +0,0 @@
-#
-# Licensed to the Apache Software Foundation (ASF) under one or more
-# contributor license agreements.  See the NOTICE file distributed with
-# this work for additional information regarding copyright ownership.
-# The ASF licenses this file to You under the Apache License, Version 2.0
-# (the "License"); you may not use this file except in compliance with
-# the License.  You may obtain a copy of the License at
-#
-#      http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-
-
-log4j.rootLogger = INFO, out
-
-log4j.appender.out = org.apache.log4j.ConsoleAppender
-log4j.appender.out.layout = org.apache.log4j.PatternLayout
-log4j.appender.out.layout.ConversionPattern = %d (%t) [%p - %l] %m%n
-
-log4j.logger.org.apache.flume = INFO
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sources/flume-kafka-source/src/test/resources/log4j2.xml
----------------------------------------------------------------------
diff --git a/flume-ng-sources/flume-kafka-source/src/test/resources/log4j2.xml b/flume-ng-sources/flume-kafka-source/src/test/resources/log4j2.xml
new file mode 100644
index 0000000..7caf0d2
--- /dev/null
+++ b/flume-ng-sources/flume-kafka-source/src/test/resources/log4j2.xml
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+-->
+<Configuration status="OFF">
+  <Appenders>
+    <Console name="Console" target="SYSTEM_OUT">
+      <PatternLayout pattern="%d (%t) [%p - %l] %m%n" />
+    </Console>
+  </Appenders>
+  <Loggers>
+    <Logger name="org.apache.flume" level="INFO"/>
+    <Root level="INFO">
+      <AppenderRef ref="Console" />
+    </Root>
+  </Loggers>
+</Configuration>
\ No newline at end of file


[4/4] flume git commit: FLUME-2050 Upgrade to Log4j 2

Posted by rg...@apache.org.
FLUME-2050 Upgrade to Log4j 2


Project: http://git-wip-us.apache.org/repos/asf/flume/repo
Commit: http://git-wip-us.apache.org/repos/asf/flume/commit/140ea5d2
Tree: http://git-wip-us.apache.org/repos/asf/flume/tree/140ea5d2
Diff: http://git-wip-us.apache.org/repos/asf/flume/diff/140ea5d2

Branch: refs/heads/flume-2050
Commit: 140ea5d2808b7f6fce496e5e2d175821f302f25b
Parents: e4312ad
Author: Ralph Goers <rg...@nextiva.com>
Authored: Thu Nov 2 23:01:58 2017 -0700
Committer: Ralph Goers <rg...@nextiva.com>
Committed: Thu Nov 2 23:01:58 2017 -0700

----------------------------------------------------------------------
 conf/log4j.properties                           |  68 ----------------
 conf/log4j2.xml                                 |  56 +++++++++++++
 flume-ng-auth/pom.xml                           |  19 ++++-
 flume-ng-channels/flume-file-channel/pom.xml    |  28 ++++++-
 .../src/test/resources/log4j.properties         |  25 ------
 .../src/test/resources/log4j2.xml               |  30 +++++++
 flume-ng-channels/flume-jdbc-channel/pom.xml    |  22 +++++-
 flume-ng-channels/flume-kafka-channel/pom.xml   |  10 +++
 .../src/test/resources/log4j.properties         |  78 -------------------
 .../src/test/resources/log4j2.xml               |  72 +++++++++++++++++
 .../flume-spillable-memory-channel/pom.xml      |  22 +++++-
 flume-ng-clients/flume-ng-log4jappender/pom.xml |   1 +
 flume-ng-configuration/pom.xml                  |  19 ++++-
 flume-ng-core/pom.xml                           |  13 +++-
 .../src/test/resources/log4j.properties         |  24 ------
 flume-ng-core/src/test/resources/log4j2.xml     |  31 ++++++++
 flume-ng-dist/pom.xml                           |  12 +++
 flume-ng-embedded-agent/pom.xml                 |  16 +++-
 .../src/test/resources/log4j.properties         |  24 ------
 .../src/test/resources/log4j2.xml               |  31 ++++++++
 .../flume-avro-source/pom.xml                   |  22 +++++-
 .../flume-thrift-source/pom.xml                 |  22 +++++-
 .../src/test/resources/log4j.properties         |  25 ------
 .../src/test/resources/log4j2.xml               |  31 ++++++++
 flume-ng-node/pom.xml                           |  18 +++--
 .../src/test/resources/log4j.properties         |  24 ------
 flume-ng-node/src/test/resources/log4j2.xml     |  31 ++++++++
 flume-ng-sdk/pom.xml                            |  25 +++++-
 .../src/test/resources/log4j.properties         |  24 ------
 flume-ng-sdk/src/test/resources/log4j2.xml      |  31 ++++++++
 flume-ng-sinks/flume-dataset-sink/pom.xml       |  22 +++++-
 flume-ng-sinks/flume-hdfs-sink/pom.xml          |  22 +++++-
 .../src/test/resources/log4j.properties         |  26 -------
 .../src/test/resources/log4j2.xml               |  33 ++++++++
 .../metastore_db/README_DO_NOT_TOUCH_FILES.txt  |   9 +++
 .../flume-hive-sink/metastore_db/db.lck         | Bin 0 -> 38 bytes
 .../flume-hive-sink/metastore_db/dbex.lck       | Bin 0 -> 4 bytes
 .../log/README_DO_NOT_TOUCH_FILES.txt           |   8 ++
 .../flume-hive-sink/metastore_db/log/log.ctrl   | Bin 0 -> 48 bytes
 .../flume-hive-sink/metastore_db/log/log10.dat  | Bin 0 -> 1048658 bytes
 .../flume-hive-sink/metastore_db/log/log11.dat  | Bin 0 -> 1048576 bytes
 .../metastore_db/log/logmirror.ctrl             | Bin 0 -> 48 bytes
 .../seg0/README_DO_NOT_TOUCH_FILES.txt          |   8 ++
 .../flume-hive-sink/metastore_db/seg0/c10.dat   | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c101.dat  | Bin 0 -> 16384 bytes
 .../flume-hive-sink/metastore_db/seg0/c111.dat  | Bin 0 -> 20480 bytes
 .../flume-hive-sink/metastore_db/seg0/c121.dat  | Bin 0 -> 16384 bytes
 .../flume-hive-sink/metastore_db/seg0/c130.dat  | Bin 0 -> 16384 bytes
 .../flume-hive-sink/metastore_db/seg0/c141.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c150.dat  | Bin 0 -> 28672 bytes
 .../flume-hive-sink/metastore_db/seg0/c161.dat  | Bin 0 -> 20480 bytes
 .../flume-hive-sink/metastore_db/seg0/c171.dat  | Bin 0 -> 20480 bytes
 .../flume-hive-sink/metastore_db/seg0/c180.dat  | Bin 0 -> 73728 bytes
 .../flume-hive-sink/metastore_db/seg0/c191.dat  | Bin 0 -> 16384 bytes
 .../flume-hive-sink/metastore_db/seg0/c1a1.dat  | Bin 0 -> 16384 bytes
 .../flume-hive-sink/metastore_db/seg0/c1b1.dat  | Bin 0 -> 16384 bytes
 .../flume-hive-sink/metastore_db/seg0/c1c0.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c1d1.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c1e0.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c1f1.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c20.dat   | Bin 0 -> 102400 bytes
 .../flume-hive-sink/metastore_db/seg0/c200.dat  | Bin 0 -> 16384 bytes
 .../flume-hive-sink/metastore_db/seg0/c211.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c221.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c230.dat  | Bin 0 -> 319488 bytes
 .../flume-hive-sink/metastore_db/seg0/c241.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c251.dat  | Bin 0 -> 20480 bytes
 .../flume-hive-sink/metastore_db/seg0/c260.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c271.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c281.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c290.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c2a1.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c2b1.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c2c1.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c2d0.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c2e1.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c2f0.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c300.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c31.dat   | Bin 0 -> 28672 bytes
 .../flume-hive-sink/metastore_db/seg0/c311.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c321.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c331.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c340.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c351.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c3570.dat | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c3581.dat | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c3590.dat | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c35a1.dat | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c35b0.dat | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c35c0.dat | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c35d0.dat | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c35e1.dat | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c35f1.dat | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c3600.dat | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c361.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c3610.dat | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c3621.dat | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c3630.dat | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c371.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c380.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c391.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c3a1.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c3b1.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c3c0.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c3d1.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c3e1.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c3f1.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c400.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c41.dat   | Bin 0 -> 69632 bytes
 .../flume-hive-sink/metastore_db/seg0/c411.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c421.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c430.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c441.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c451.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c461.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c470.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c481.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c51.dat   | Bin 0 -> 28672 bytes
 .../flume-hive-sink/metastore_db/seg0/c560.dat  | Bin 0 -> 98304 bytes
 .../flume-hive-sink/metastore_db/seg0/c571.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c580.dat  | Bin 0 -> 65536 bytes
 .../flume-hive-sink/metastore_db/seg0/c591.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c5a1.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c5b1.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c5c0.dat  | Bin 0 -> 16384 bytes
 .../flume-hive-sink/metastore_db/seg0/c5d1.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c5e0.dat  | Bin 0 -> 98304 bytes
 .../flume-hive-sink/metastore_db/seg0/c5f1.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c60.dat   | Bin 0 -> 16384 bytes
 .../flume-hive-sink/metastore_db/seg0/c600.dat  | Bin 0 -> 131072 bytes
 .../flume-hive-sink/metastore_db/seg0/c611.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c620.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c631.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c640.dat  | Bin 0 -> 98304 bytes
 .../flume-hive-sink/metastore_db/seg0/c651.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c660.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c671.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c680.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c691.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c6a0.dat  | Bin 0 -> 65536 bytes
 .../flume-hive-sink/metastore_db/seg0/c6b1.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c6c0.dat  | Bin 0 -> 12288 bytes
 .../flume-hive-sink/metastore_db/seg0/c6d1.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c6e0.dat  | Bin 0 -> 98304 bytes
 .../flume-hive-sink/metastore_db/seg0/c6f1.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c700.dat  | Bin 0 -> 65536 bytes
 .../flume-hive-sink/metastore_db/seg0/c71.dat   | Bin 0 -> 16384 bytes
 .../flume-hive-sink/metastore_db/seg0/c711.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c720.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c731.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c740.dat  | Bin 0 -> 98304 bytes
 .../flume-hive-sink/metastore_db/seg0/c751.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c760.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c771.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c780.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c791.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c7a0.dat  | Bin 0 -> 98304 bytes
 .../flume-hive-sink/metastore_db/seg0/c7b1.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c7c0.dat  | Bin 0 -> 98304 bytes
 .../flume-hive-sink/metastore_db/seg0/c7d1.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c7e1.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c7f1.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c801.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c81.dat   | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c811.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c821.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c831.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c841.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c851.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c861.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c871.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c881.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c891.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c8a1.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c8b1.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c8c1.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c8d1.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c8e1.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c8f1.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c90.dat   | Bin 0 -> 86016 bytes
 .../flume-hive-sink/metastore_db/seg0/c901.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c910.dat  | Bin 0 -> 12288 bytes
 .../flume-hive-sink/metastore_db/seg0/c921.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c930.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c941.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c950.dat  | Bin 0 -> 98304 bytes
 .../flume-hive-sink/metastore_db/seg0/c961.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c970.dat  | Bin 0 -> 12288 bytes
 .../flume-hive-sink/metastore_db/seg0/c981.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c991.dat  | Bin 0 -> 65536 bytes
 .../flume-hive-sink/metastore_db/seg0/c9a1.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c9b1.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c9c1.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c9d1.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c9e1.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/c9f0.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/ca01.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/ca1.dat   | Bin 0 -> 69632 bytes
 .../flume-hive-sink/metastore_db/seg0/ca10.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/ca21.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/ca30.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/ca41.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/ca51.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/ca60.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/ca71.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/ca81.dat  | Bin 0 -> 65536 bytes
 .../flume-hive-sink/metastore_db/seg0/ca90.dat  | Bin 0 -> 65536 bytes
 .../flume-hive-sink/metastore_db/seg0/caa1.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/cab0.dat  | Bin 0 -> 65536 bytes
 .../flume-hive-sink/metastore_db/seg0/cac1.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/cad1.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/cae1.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/caf1.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/cb01.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/cb1.dat   | Bin 0 -> 16384 bytes
 .../flume-hive-sink/metastore_db/seg0/cb11.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/cb20.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/cb31.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/cb41.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/cb51.dat  | Bin 0 -> 65536 bytes
 .../flume-hive-sink/metastore_db/seg0/cb60.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/cb71.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/cb81.dat  | Bin 0 -> 65536 bytes
 .../flume-hive-sink/metastore_db/seg0/cb91.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/cba0.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/cbb1.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/cbc1.dat  | Bin 0 -> 65536 bytes
 .../flume-hive-sink/metastore_db/seg0/cbd1.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/cbe0.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/cbf1.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/cc0.dat   | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/cc01.dat  | Bin 0 -> 65536 bytes
 .../flume-hive-sink/metastore_db/seg0/cc11.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/cc20.dat  | Bin 0 -> 65536 bytes
 .../flume-hive-sink/metastore_db/seg0/cc31.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/cc40.dat  | Bin 0 -> 65536 bytes
 .../flume-hive-sink/metastore_db/seg0/cc51.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/cc61.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/cc71.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/cc81.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/cc90.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/cca1.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/ccb1.dat  | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/ccc1.dat  | Bin 0 -> 65536 bytes
 .../flume-hive-sink/metastore_db/seg0/cd1.dat   | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/ce1.dat   | Bin 0 -> 8192 bytes
 .../flume-hive-sink/metastore_db/seg0/cf0.dat   | Bin 0 -> 24576 bytes
 .../flume-hive-sink/metastore_db/seg0/d2ef0.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d2f01.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d2f10.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d2f21.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d2f30.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d2f40.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d2f50.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d2f61.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d2f71.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d2f80.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d2f90.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d2fa1.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d2fb0.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d2fc0.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d2fd1.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d2fe0.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d2ff1.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3000.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3010.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3020.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3031.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3041.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3050.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3060.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3071.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3080.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3090.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d30a1.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d30b0.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d30c1.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d30d0.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d30e0.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d30f0.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3101.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3111.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3120.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3130.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3141.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3150.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3160.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3171.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3180.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3191.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d31a0.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d31b0.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d31c0.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d31d1.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d31e1.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d31f0.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3200.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3211.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3220.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3230.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3241.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3250.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3261.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3270.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3280.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3290.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d32a1.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d32b1.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d32c0.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d32d0.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d32e1.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d32f0.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3300.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3311.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3320.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3331.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3340.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3350.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3360.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3371.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3381.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3390.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d33a0.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d33b1.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d33c0.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d33d0.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d33e1.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d33f0.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3401.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3410.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3420.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3430.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3441.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3451.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3460.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3470.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3481.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3490.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d34a0.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d34b1.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d34c0.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d34d1.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d34e0.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d34f0.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3500.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3511.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3521.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3530.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3540.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3551.dat | Bin 0 -> 4096 bytes
 .../flume-hive-sink/metastore_db/seg0/d3560.dat | Bin 0 -> 4096 bytes
 .../metastore_db/service.properties             |  23 ++++++
 flume-ng-sinks/flume-hive-sink/pom.xml          |  22 +++++-
 .../src/test/resources/log4j.properties         |  26 -------
 .../src/test/resources/log4j2.xml               |  33 ++++++++
 flume-ng-sinks/flume-http-sink/pom.xml          |  21 ++++-
 .../org/apache/flume/sink/http/HttpSink.java    |   5 +-
 .../src/test/resources/log4j.properties         |  28 -------
 .../src/test/resources/log4j2.xml               |  30 +++++++
 flume-ng-sinks/flume-irc-sink/pom.xml           |  22 +++++-
 .../flume-ng-elasticsearch-sink/pom.xml         |  22 +++++-
 .../src/test/resources/log4j.properties         |  25 ------
 .../src/test/resources/log4j2.xml               |  31 ++++++++
 flume-ng-sinks/flume-ng-hbase-sink/pom.xml      |  22 +++++-
 flume-ng-sinks/flume-ng-kafka-sink/pom.xml      |  24 ++++++
 .../src/test/resources/log4j.properties         |  78 -------------------
 .../src/test/resources/log4j2.xml               |  72 +++++++++++++++++
 .../flume-ng-morphline-solr-sink/pom.xml        |  37 +++++++--
 .../src/test/resources/log4j.properties         |  34 --------
 .../src/test/resources/log4j2.xml               |  38 +++++++++
 flume-ng-sources/flume-jms-source/pom.xml       |  22 +++++-
 flume-ng-sources/flume-kafka-source/pom.xml     |   6 ++
 .../src/test/resources/log4j.properties         |  25 ------
 .../src/test/resources/log4j2.xml               |  31 ++++++++
 flume-ng-sources/flume-scribe-source/pom.xml    |  22 +++++-
 .../src/test/resources/log4j.properties         |  33 --------
 .../src/test/resources/log4j2.xml               |  37 +++++++++
 flume-ng-tests/pom.xml                          |  24 +++++-
 .../src/test/resources/log4j.properties         |  25 ------
 flume-ng-tests/src/test/resources/log4j2.xml    |  31 ++++++++
 pom.xml                                         |  45 +++++------
 381 files changed, 1203 insertions(+), 673 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/conf/log4j.properties
----------------------------------------------------------------------
diff --git a/conf/log4j.properties b/conf/log4j.properties
deleted file mode 100644
index c948bff..0000000
--- a/conf/log4j.properties
+++ /dev/null
@@ -1,68 +0,0 @@
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-#  http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-# KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
-
-# Define some default values that can be overridden by system properties.
-#
-# For testing, it may also be convenient to specify
-# -Dflume.root.logger=DEBUG,console when launching flume.
-
-#flume.root.logger=DEBUG,console
-flume.root.logger=INFO,LOGFILE
-flume.log.dir=./logs
-flume.log.file=flume.log
-
-log4j.logger.org.apache.flume.lifecycle = INFO
-log4j.logger.org.jboss = WARN
-log4j.logger.org.mortbay = INFO
-log4j.logger.org.apache.avro.ipc.NettyTransceiver = WARN
-log4j.logger.org.apache.hadoop = INFO
-log4j.logger.org.apache.hadoop.hive = ERROR
-
-# Define the root logger to the system property "flume.root.logger".
-log4j.rootLogger=${flume.root.logger}
-
-
-# Stock log4j rolling file appender
-# Default log rotation configuration
-log4j.appender.LOGFILE=org.apache.log4j.RollingFileAppender
-log4j.appender.LOGFILE.MaxFileSize=100MB
-log4j.appender.LOGFILE.MaxBackupIndex=10
-log4j.appender.LOGFILE.File=${flume.log.dir}/${flume.log.file}
-log4j.appender.LOGFILE.layout=org.apache.log4j.PatternLayout
-log4j.appender.LOGFILE.layout.ConversionPattern=%d{dd MMM yyyy HH:mm:ss,SSS} %-5p [%t] (%C.%M:%L) %x - %m%n
-
-
-# Warning: If you enable the following appender it will fill up your disk if you don't have a cleanup job!
-# This uses the updated rolling file appender from log4j-extras that supports a reliable time-based rolling policy.
-# See http://logging.apache.org/log4j/companions/extras/apidocs/org/apache/log4j/rolling/TimeBasedRollingPolicy.html
-# Add "DAILY" to flume.root.logger above if you want to use this
-log4j.appender.DAILY=org.apache.log4j.rolling.RollingFileAppender
-log4j.appender.DAILY.rollingPolicy=org.apache.log4j.rolling.TimeBasedRollingPolicy
-log4j.appender.DAILY.rollingPolicy.ActiveFileName=${flume.log.dir}/${flume.log.file}
-log4j.appender.DAILY.rollingPolicy.FileNamePattern=${flume.log.dir}/${flume.log.file}.%d{yyyy-MM-dd}
-log4j.appender.DAILY.layout=org.apache.log4j.PatternLayout
-log4j.appender.DAILY.layout.ConversionPattern=%d{dd MMM yyyy HH:mm:ss,SSS} %-5p [%t] (%C.%M:%L) %x - %m%n
-
-
-# console
-# Add "console" to flume.root.logger above if you want to use this
-log4j.appender.console=org.apache.log4j.ConsoleAppender
-log4j.appender.console.target=System.err
-log4j.appender.console.layout=org.apache.log4j.PatternLayout
-log4j.appender.console.layout.ConversionPattern=%d (%t) [%p - %l] %m%n

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/conf/log4j2.xml
----------------------------------------------------------------------
diff --git a/conf/log4j2.xml b/conf/log4j2.xml
new file mode 100644
index 0000000..5bc76cb
--- /dev/null
+++ b/conf/log4j2.xml
@@ -0,0 +1,56 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+-->
+<Configuration status="ERROR">
+  <Properties>
+    <Property name="LOG_DIR">./logs</Property>
+  </Properties>
+  <Appenders>
+    <Console name="Console" target="SYSTEM_OUT">
+      <PatternLayout pattern="%d (%t) [%p - %l] %m%n" />
+    </Console>
+    <RollingFile name="LogFile" fileName="${LOG_DIR}/flume.log" filePattern="${LOG_DIR}/archive/flume.log.%d{yyyyMMdd}-%i">
+      <PatternLayout pattern="%d{dd MMM yyyy HH:mm:ss,SSS} %-5p [%t] (%C.%M:%L) %x - %m%n" />
+      <Policies>
+        <!-- Roll every night at midnight or when the file reaches 100MB -->
+        <SizeBasedTriggeringPolicy size="100 MB"/>
+        <CronTriggeringPolicy schedule="0 0 0 * * ?"/>
+      </Policies>
+      <DefaultRolloverStrategy min="1" max="20">
+        <Delete basePath="${LOG_DIR}/archive">
+          <!-- Nested conditions: the inner condition is only evaluated on files for which the outer conditions are true. -->
+          <IfFileName glob="flume.log.*">
+            <!-- Only allow 1 GB of files to accumulate -->
+            <IfAccumulatedFileSize exceeds="1 GB"/>
+          </IfFileName>
+        </Delete>
+      </DefaultRolloverStrategy>
+    </RollingFile>
+  </Appenders>
+
+  <Loggers>
+    <Logger name="org.apache.flume.lifecycle" level="info"/>
+    <Logger name="org.jboss" level="WARN"/>
+    <Logger name="org.apache.avro.ipc.NettyTransceiver" level="WARN"/>
+    <Logger name="org.apache.hadoop" level="INFO"/>
+    <Logger name="org.apache.hadoop.hive" level="ERROR"/>
+    <Root level="INFO">
+      <AppenderRef ref="LogFile" />
+    </Root>
+  </Loggers>
+</Configuration>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-auth/pom.xml
----------------------------------------------------------------------
diff --git a/flume-ng-auth/pom.xml b/flume-ng-auth/pom.xml
index c7c682f..c74df09 100644
--- a/flume-ng-auth/pom.xml
+++ b/flume-ng-auth/pom.xml
@@ -57,8 +57,23 @@ limitations under the License.
     </dependency>
 
     <dependency>
-      <groupId>org.slf4j</groupId>
-      <artifactId>slf4j-log4j12</artifactId>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-api</artifactId>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-core</artifactId>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-slf4j-impl</artifactId>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-1.2-api</artifactId>
     </dependency>
 
     <dependency>

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-channels/flume-file-channel/pom.xml
----------------------------------------------------------------------
diff --git a/flume-ng-channels/flume-file-channel/pom.xml b/flume-ng-channels/flume-file-channel/pom.xml
index 05da84d..6e580c9 100644
--- a/flume-ng-channels/flume-file-channel/pom.xml
+++ b/flume-ng-channels/flume-file-channel/pom.xml
@@ -91,8 +91,32 @@
     </dependency>
 
     <dependency>
-      <groupId>org.slf4j</groupId>
-      <artifactId>slf4j-log4j12</artifactId>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-api</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-core</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-jcl</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-slf4j-impl</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-1.2-api</artifactId>
       <scope>test</scope>
     </dependency>
 

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-channels/flume-file-channel/src/test/resources/log4j.properties
----------------------------------------------------------------------
diff --git a/flume-ng-channels/flume-file-channel/src/test/resources/log4j.properties b/flume-ng-channels/flume-file-channel/src/test/resources/log4j.properties
deleted file mode 100644
index 739ecc8..0000000
--- a/flume-ng-channels/flume-file-channel/src/test/resources/log4j.properties
+++ /dev/null
@@ -1,25 +0,0 @@
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-#  http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-# KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-
-
-log4j.rootLogger = INFO, out
-
-log4j.appender.out = org.apache.log4j.ConsoleAppender
-log4j.appender.out.layout = org.apache.log4j.PatternLayout
-log4j.appender.out.layout.ConversionPattern = %d (%t) [%p - %l] %m%n
-
-log4j.logger.org.apache.flume = DEBUG

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-channels/flume-file-channel/src/test/resources/log4j2.xml
----------------------------------------------------------------------
diff --git a/flume-ng-channels/flume-file-channel/src/test/resources/log4j2.xml b/flume-ng-channels/flume-file-channel/src/test/resources/log4j2.xml
new file mode 100644
index 0000000..2aa49a4
--- /dev/null
+++ b/flume-ng-channels/flume-file-channel/src/test/resources/log4j2.xml
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+-->
+<Configuration status="OFF">
+  <Appenders>
+    <Console name="Console" target="SYSTEM_OUT">
+      <PatternLayout pattern="%d (%t) [%p - %l] %m%n" />
+    </Console>
+  </Appenders>
+  <Loggers>
+    <Root level="INFO">
+      <AppenderRef ref="Console" />
+    </Root>
+  </Loggers>
+</Configuration>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-channels/flume-jdbc-channel/pom.xml
----------------------------------------------------------------------
diff --git a/flume-ng-channels/flume-jdbc-channel/pom.xml b/flume-ng-channels/flume-jdbc-channel/pom.xml
index 7370aa4..16479a4 100644
--- a/flume-ng-channels/flume-jdbc-channel/pom.xml
+++ b/flume-ng-channels/flume-jdbc-channel/pom.xml
@@ -74,8 +74,26 @@ limitations under the License.
       <artifactId>derby</artifactId>
     </dependency>
     <dependency>
-      <groupId>org.slf4j</groupId>
-      <artifactId>slf4j-log4j12</artifactId>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-api</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-core</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-slf4j-impl</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-1.2-api</artifactId>
       <scope>test</scope>
     </dependency>
   </dependencies>

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-channels/flume-kafka-channel/pom.xml
----------------------------------------------------------------------
diff --git a/flume-ng-channels/flume-kafka-channel/pom.xml b/flume-ng-channels/flume-kafka-channel/pom.xml
index 6d513dc..912b04b 100644
--- a/flume-ng-channels/flume-kafka-channel/pom.xml
+++ b/flume-ng-channels/flume-kafka-channel/pom.xml
@@ -46,6 +46,16 @@ limitations under the License.
       <groupId>org.apache.kafka</groupId>
       <artifactId>kafka_2.10</artifactId>
       <version>${kafka.version}</version>
+      <exclusions>
+        <exclusion>
+          <groupId>log4j</groupId>
+          <artifactId>log4j</artifactId>
+        </exclusion>
+        <exclusion>
+          <groupId>org.slf4j</groupId>
+          <artifactId>slf4j-log4j12</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
     <dependency>
       <groupId>org.apache.kafka</groupId>

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-channels/flume-kafka-channel/src/test/resources/log4j.properties
----------------------------------------------------------------------
diff --git a/flume-ng-channels/flume-kafka-channel/src/test/resources/log4j.properties b/flume-ng-channels/flume-kafka-channel/src/test/resources/log4j.properties
deleted file mode 100644
index b86600b..0000000
--- a/flume-ng-channels/flume-kafka-channel/src/test/resources/log4j.properties
+++ /dev/null
@@ -1,78 +0,0 @@
-# Licensed to the Apache Software Foundation (ASF) under one or more
-# contributor license agreements.  See the NOTICE file distributed with
-# this work for additional information regarding copyright ownership.
-# The ASF licenses this file to You under the Apache License, Version 2.0
-# (the "License"); you may not use this file except in compliance with
-# the License.  You may obtain a copy of the License at
-#
-#    http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
-kafka.logs.dir=target/logs
-
-log4j.rootLogger=INFO, stdout
-
-log4j.appender.stdout=org.apache.log4j.ConsoleAppender
-log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
-log4j.appender.stdout.layout.ConversionPattern=[%d] %p %m (%c)%n
-
-log4j.appender.kafkaAppender=org.apache.log4j.DailyRollingFileAppender
-log4j.appender.kafkaAppender.DatePattern='.'yyyy-MM-dd-HH
-log4j.appender.kafkaAppender.File=${kafka.logs.dir}/server.log
-log4j.appender.kafkaAppender.layout=org.apache.log4j.PatternLayout
-log4j.appender.kafkaAppender.layout.ConversionPattern=[%d] %p %m (%c)%n
-
-log4j.appender.stateChangeAppender=org.apache.log4j.DailyRollingFileAppender
-log4j.appender.stateChangeAppender.DatePattern='.'yyyy-MM-dd-HH
-log4j.appender.stateChangeAppender.File=${kafka.logs.dir}/state-change.log
-log4j.appender.stateChangeAppender.layout=org.apache.log4j.PatternLayout
-log4j.appender.stateChangeAppender.layout.ConversionPattern=[%d] %p %m (%c)%n
-
-log4j.appender.requestAppender=org.apache.log4j.DailyRollingFileAppender
-log4j.appender.requestAppender.DatePattern='.'yyyy-MM-dd-HH
-log4j.appender.requestAppender.File=${kafka.logs.dir}/kafka-request.log
-log4j.appender.requestAppender.layout=org.apache.log4j.PatternLayout
-log4j.appender.requestAppender.layout.ConversionPattern=[%d] %p %m (%c)%n
-
-log4j.appender.cleanerAppender=org.apache.log4j.DailyRollingFileAppender
-log4j.appender.cleanerAppender.DatePattern='.'yyyy-MM-dd-HH
-log4j.appender.cleanerAppender.File=${kafka.logs.dir}/log-cleaner.log
-log4j.appender.cleanerAppender.layout=org.apache.log4j.PatternLayout
-log4j.appender.cleanerAppender.layout.ConversionPattern=[%d] %p %m (%c)%n
-
-log4j.appender.controllerAppender=org.apache.log4j.DailyRollingFileAppender
-log4j.appender.controllerAppender.DatePattern='.'yyyy-MM-dd-HH
-log4j.appender.controllerAppender.File=${kafka.logs.dir}/controller.log
-log4j.appender.controllerAppender.layout=org.apache.log4j.PatternLayout
-log4j.appender.controllerAppender.layout.ConversionPattern=[%d] %p %m (%c)%n
-
-# Turn on all our debugging info
-#log4j.logger.kafka.producer.async.DefaultEventHandler=DEBUG, kafkaAppender
-#log4j.logger.kafka.client.ClientUtils=DEBUG, kafkaAppender
-#log4j.logger.kafka.perf=DEBUG, kafkaAppender
-#log4j.logger.kafka.perf.ProducerPerformance$ProducerThread=DEBUG, kafkaAppender
-#log4j.logger.org.I0Itec.zkclient.ZkClient=DEBUG
-log4j.logger.kafka=INFO, kafkaAppender
-
-log4j.logger.kafka.network.RequestChannel$=WARN, requestAppender
-log4j.additivity.kafka.network.RequestChannel$=false
-
-#log4j.logger.kafka.network.Processor=TRACE, requestAppender
-#log4j.logger.kafka.server.KafkaApis=TRACE, requestAppender
-#log4j.additivity.kafka.server.KafkaApis=false
-log4j.logger.kafka.request.logger=WARN, requestAppender
-log4j.additivity.kafka.request.logger=false
-
-log4j.logger.kafka.controller=TRACE, controllerAppender
-log4j.additivity.kafka.controller=false
-
-log4j.logger.kafka.log.LogCleaner=INFO, cleanerAppender
-log4j.additivity.kafka.log.LogCleaner=false
-
-log4j.logger.state.change.logger=TRACE, stateChangeAppender
-log4j.additivity.state.change.logger=false

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-channels/flume-kafka-channel/src/test/resources/log4j2.xml
----------------------------------------------------------------------
diff --git a/flume-ng-channels/flume-kafka-channel/src/test/resources/log4j2.xml b/flume-ng-channels/flume-kafka-channel/src/test/resources/log4j2.xml
new file mode 100644
index 0000000..1263a38
--- /dev/null
+++ b/flume-ng-channels/flume-kafka-channel/src/test/resources/log4j2.xml
@@ -0,0 +1,72 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+-->
+<Configuration status="OFF">
+  <Properties>
+    <Property name="kafka.logs.dir">target/logs</Property>
+  </Properties>
+  <Appenders>
+    <Console name="Console" target="SYSTEM_OUT">
+      <PatternLayout pattern="%d (%t) [%p - %l] %m%n" />
+    </Console>
+    <RollingFile name="kafka" fileName="${kafka.logs.dir}/server.log">
+      <PatternLayout pattern="[%d] %p %m (%c)%n" />
+      <CronTriggeringPolicy schedule="0 0 0 * * ?"/>
+    </RollingFile>
+    <RollingFile name="stateChange" fileName="${kafka.logs.dir}/state-change.log">
+      <PatternLayout pattern="[%d] %p %m (%c)%n" />
+      <CronTriggeringPolicy schedule="0 0 0 * * ?"/>
+    </RollingFile>
+    <RollingFile name="request" fileName="${kafka.logs.dir}/kafka-request.log">
+      <PatternLayout pattern="[%d] %p %m (%c)%n" />
+      <CronTriggeringPolicy schedule="0 0 0 * * ?"/>
+    </RollingFile>
+    <RollingFile name="cleaner" fileName="${kafka.logs.dir}/log-cleaner.log">
+      <PatternLayout pattern="[%d] %p %m (%c)%n" />
+      <CronTriggeringPolicy schedule="0 0 0 * * ?"/>
+    </RollingFile>
+    <RollingFile name="controller" fileName="${kafka.logs.dir}/controller.log">
+      <PatternLayout pattern="[%d] %p %m (%c)%n" />
+      <CronTriggeringPolicy schedule="0 0 0 * * ?"/>
+    </RollingFile>
+  </Appenders>
+
+  <Loggers>
+    <Logger name="kafka" level="info">
+      <AppenderRef ref="kafka"/>
+    </Logger>
+    <Logger name="kafka.network.RequestChannel.*" level="WARN" additivity="false">
+      <AppenderRef ref="request"/>
+    </Logger>
+    <Logger name="kafka.request.logger" level="WARN" additivity="false">
+      <AppenderRef ref="request"/>
+    </Logger>
+    <Logger name="kafka.controller" level="TRACE" additivity="false">
+      <AppenderRef ref="controller"/>
+    </Logger>
+    <Logger name="kafka.log.cleaner" level="INFO" additivity="false">
+      <AppenderRef ref="cleaner"/>
+    </Logger>
+    <Logger name="state.change.logger" level="TRACE" additivity="false">
+      <AppenderRef ref="stateChange"/>
+    </Logger>
+    <Root level="INFO">
+      <AppenderRef ref="Console" />
+    </Root>
+  </Loggers>
+</Configuration>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-channels/flume-spillable-memory-channel/pom.xml
----------------------------------------------------------------------
diff --git a/flume-ng-channels/flume-spillable-memory-channel/pom.xml b/flume-ng-channels/flume-spillable-memory-channel/pom.xml
index e2ea393..29a3819 100644
--- a/flume-ng-channels/flume-spillable-memory-channel/pom.xml
+++ b/flume-ng-channels/flume-spillable-memory-channel/pom.xml
@@ -97,8 +97,26 @@
     </dependency>
 
     <dependency>
-      <groupId>org.slf4j</groupId>
-      <artifactId>slf4j-log4j12</artifactId>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-api</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-core</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-slf4j-impl</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-1.2-api</artifactId>
       <scope>test</scope>
     </dependency>
 

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-clients/flume-ng-log4jappender/pom.xml
----------------------------------------------------------------------
diff --git a/flume-ng-clients/flume-ng-log4jappender/pom.xml b/flume-ng-clients/flume-ng-log4jappender/pom.xml
index 3731814..fc894f2 100644
--- a/flume-ng-clients/flume-ng-log4jappender/pom.xml
+++ b/flume-ng-clients/flume-ng-log4jappender/pom.xml
@@ -67,6 +67,7 @@ limitations under the License.
     <dependency>
       <groupId>log4j</groupId>
       <artifactId>log4j</artifactId>
+      <version>1.2.17</version>
     </dependency>
 
     <dependency>

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-configuration/pom.xml
----------------------------------------------------------------------
diff --git a/flume-ng-configuration/pom.xml b/flume-ng-configuration/pom.xml
index 6a30840..e431fc8 100644
--- a/flume-ng-configuration/pom.xml
+++ b/flume-ng-configuration/pom.xml
@@ -48,8 +48,23 @@ limitations under the License.
     </dependency>
 
     <dependency>
-      <groupId>org.slf4j</groupId>
-      <artifactId>slf4j-log4j12</artifactId>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-api</artifactId>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-core</artifactId>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-slf4j-impl</artifactId>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-1.2-api</artifactId>
     </dependency>
 
     <dependency>

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-core/pom.xml
----------------------------------------------------------------------
diff --git a/flume-ng-core/pom.xml b/flume-ng-core/pom.xml
index 44d9ef6..3d72aba 100644
--- a/flume-ng-core/pom.xml
+++ b/flume-ng-core/pom.xml
@@ -301,13 +301,18 @@ limitations under the License.
     </dependency>
 
     <dependency>
-      <groupId>log4j</groupId>
-      <artifactId>log4j</artifactId>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-api</artifactId>
     </dependency>
 
     <dependency>
-      <groupId>org.slf4j</groupId>
-      <artifactId>slf4j-log4j12</artifactId>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-1.2-api</artifactId>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-core</artifactId>
     </dependency>
 
     <dependency>

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-core/src/test/resources/log4j.properties
----------------------------------------------------------------------
diff --git a/flume-ng-core/src/test/resources/log4j.properties b/flume-ng-core/src/test/resources/log4j.properties
deleted file mode 100644
index 361158d..0000000
--- a/flume-ng-core/src/test/resources/log4j.properties
+++ /dev/null
@@ -1,24 +0,0 @@
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-#   http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-# KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-
-log4j.rootLogger = INFO, out
-
-log4j.appender.out = org.apache.log4j.ConsoleAppender
-log4j.appender.out.layout = org.apache.log4j.PatternLayout
-log4j.appender.out.layout.ConversionPattern = %d (%t) [%p - %l] %m%n
-
-log4j.logger.org.apache.flume = DEBUG

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-core/src/test/resources/log4j2.xml
----------------------------------------------------------------------
diff --git a/flume-ng-core/src/test/resources/log4j2.xml b/flume-ng-core/src/test/resources/log4j2.xml
new file mode 100644
index 0000000..5676916
--- /dev/null
+++ b/flume-ng-core/src/test/resources/log4j2.xml
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+-->
+<Configuration status="OFF">
+  <Appenders>
+    <Console name="Console" target="SYSTEM_OUT">
+      <PatternLayout pattern="%d (%t) [%p - %l] %m%n" />
+    </Console>
+  </Appenders>
+  <Loggers>
+    <Logger name="org.apache.flume" level="DEBUG"/>
+    <Root level="DEBUG">
+      <AppenderRef ref="Console" />
+    </Root>
+  </Loggers>
+</Configuration>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-dist/pom.xml
----------------------------------------------------------------------
diff --git a/flume-ng-dist/pom.xml b/flume-ng-dist/pom.xml
index 330118e..b3b6faa 100644
--- a/flume-ng-dist/pom.xml
+++ b/flume-ng-dist/pom.xml
@@ -199,11 +199,23 @@
     <dependency>
       <groupId>org.apache.flume.flume-ng-clients</groupId>
       <artifactId>flume-ng-log4jappender</artifactId>
+      <exclusions>
+        <exclusion>
+          <groupId>log4j</groupId>
+          <artifactId>log4j</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
     <dependency>
       <groupId>org.apache.flume.flume-ng-clients</groupId>
       <artifactId>flume-ng-log4jappender</artifactId>
       <classifier>jar-with-dependencies</classifier>
+      <exclusions>
+        <exclusion>
+          <groupId>log4j</groupId>
+          <artifactId>log4j</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
     <dependency>
       <groupId>org.apache.flume</groupId>

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-embedded-agent/pom.xml
----------------------------------------------------------------------
diff --git a/flume-ng-embedded-agent/pom.xml b/flume-ng-embedded-agent/pom.xml
index 1d65768..a99f129 100644
--- a/flume-ng-embedded-agent/pom.xml
+++ b/flume-ng-embedded-agent/pom.xml
@@ -69,13 +69,25 @@ limitations under the License.
     </dependency>
 
     <dependency>
-      <groupId>org.slf4j</groupId>
-      <artifactId>slf4j-log4j12</artifactId>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-1.2-api</artifactId>
       <!-- only used for tests -->
       <optional>true</optional>
     </dependency>
 
     <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-api</artifactId>
+      <optional>true</optional>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-core</artifactId>
+      <optional>true</optional>
+    </dependency>
+
+    <dependency>
       <groupId>org.mockito</groupId>
       <artifactId>mockito-all</artifactId>
       <scope>test</scope>

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-embedded-agent/src/test/resources/log4j.properties
----------------------------------------------------------------------
diff --git a/flume-ng-embedded-agent/src/test/resources/log4j.properties b/flume-ng-embedded-agent/src/test/resources/log4j.properties
deleted file mode 100644
index 361158d..0000000
--- a/flume-ng-embedded-agent/src/test/resources/log4j.properties
+++ /dev/null
@@ -1,24 +0,0 @@
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-#   http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-# KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-
-log4j.rootLogger = INFO, out
-
-log4j.appender.out = org.apache.log4j.ConsoleAppender
-log4j.appender.out.layout = org.apache.log4j.PatternLayout
-log4j.appender.out.layout.ConversionPattern = %d (%t) [%p - %l] %m%n
-
-log4j.logger.org.apache.flume = DEBUG

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-embedded-agent/src/test/resources/log4j2.xml
----------------------------------------------------------------------
diff --git a/flume-ng-embedded-agent/src/test/resources/log4j2.xml b/flume-ng-embedded-agent/src/test/resources/log4j2.xml
new file mode 100644
index 0000000..fbc44b4
--- /dev/null
+++ b/flume-ng-embedded-agent/src/test/resources/log4j2.xml
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+-->
+<Configuration status="OFF">
+  <Appenders>
+    <Console name="Console" target="SYSTEM_OUT">
+      <PatternLayout pattern="%d (%t) [%p - %l] %m%n" />
+    </Console>
+  </Appenders>
+  <Loggers>
+    <Logger name="org.apache.flume" level="DEBUG"/>
+    <Root level="INFO">
+      <AppenderRef ref="Console" />
+    </Root>
+  </Loggers>
+</Configuration>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-legacy-sources/flume-avro-source/pom.xml
----------------------------------------------------------------------
diff --git a/flume-ng-legacy-sources/flume-avro-source/pom.xml b/flume-ng-legacy-sources/flume-avro-source/pom.xml
index e9cfab7..c5fb68e 100644
--- a/flume-ng-legacy-sources/flume-avro-source/pom.xml
+++ b/flume-ng-legacy-sources/flume-avro-source/pom.xml
@@ -115,8 +115,26 @@ limitations under the License.
     </dependency>
 
     <dependency>
-      <groupId>org.slf4j</groupId>
-      <artifactId>slf4j-log4j12</artifactId>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-api</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-core</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-slf4j-impl</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-1.2-api</artifactId>
       <scope>test</scope>
     </dependency>
 

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-legacy-sources/flume-thrift-source/pom.xml
----------------------------------------------------------------------
diff --git a/flume-ng-legacy-sources/flume-thrift-source/pom.xml b/flume-ng-legacy-sources/flume-thrift-source/pom.xml
index 194e41e..ce84145 100644
--- a/flume-ng-legacy-sources/flume-thrift-source/pom.xml
+++ b/flume-ng-legacy-sources/flume-thrift-source/pom.xml
@@ -150,8 +150,26 @@ limitations under the License.
     </dependency>
 
     <dependency>
-      <groupId>org.slf4j</groupId>
-      <artifactId>slf4j-log4j12</artifactId>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-api</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-core</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-slf4j-impl</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-1.2-api</artifactId>
       <scope>test</scope>
     </dependency>
 

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-legacy-sources/flume-thrift-source/src/test/resources/log4j.properties
----------------------------------------------------------------------
diff --git a/flume-ng-legacy-sources/flume-thrift-source/src/test/resources/log4j.properties b/flume-ng-legacy-sources/flume-thrift-source/src/test/resources/log4j.properties
deleted file mode 100644
index 9036aca..0000000
--- a/flume-ng-legacy-sources/flume-thrift-source/src/test/resources/log4j.properties
+++ /dev/null
@@ -1,25 +0,0 @@
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-#  http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-# KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-
-
-log4j.rootLogger = DEBUG, out
-
-log4j.appender.out = org.apache.log4j.ConsoleAppender
-log4j.appender.out.layout = org.apache.log4j.PatternLayout
-log4j.appender.out.layout.ConversionPattern = %d (%t) [%p - %l] %m%n
-
-log4j.logger.org.apache.flume = DEBUG

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-legacy-sources/flume-thrift-source/src/test/resources/log4j2.xml
----------------------------------------------------------------------
diff --git a/flume-ng-legacy-sources/flume-thrift-source/src/test/resources/log4j2.xml b/flume-ng-legacy-sources/flume-thrift-source/src/test/resources/log4j2.xml
new file mode 100644
index 0000000..5676916
--- /dev/null
+++ b/flume-ng-legacy-sources/flume-thrift-source/src/test/resources/log4j2.xml
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+-->
+<Configuration status="OFF">
+  <Appenders>
+    <Console name="Console" target="SYSTEM_OUT">
+      <PatternLayout pattern="%d (%t) [%p - %l] %m%n" />
+    </Console>
+  </Appenders>
+  <Loggers>
+    <Logger name="org.apache.flume" level="DEBUG"/>
+    <Root level="DEBUG">
+      <AppenderRef ref="Console" />
+    </Root>
+  </Loggers>
+</Configuration>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-node/pom.xml
----------------------------------------------------------------------
diff --git a/flume-ng-node/pom.xml b/flume-ng-node/pom.xml
index 6cf5364..83faadd 100644
--- a/flume-ng-node/pom.xml
+++ b/flume-ng-node/pom.xml
@@ -103,18 +103,18 @@
     </dependency>
 
     <dependency>
-      <groupId>org.slf4j</groupId>
-      <artifactId>slf4j-log4j12</artifactId>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-1.2-api</artifactId>
     </dependency>
 
     <dependency>
-      <groupId>log4j</groupId>
-      <artifactId>log4j</artifactId>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-api</artifactId>
     </dependency>
 
     <dependency>
-      <groupId>log4j</groupId>
-      <artifactId>apache-log4j-extras</artifactId>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-core</artifactId>
     </dependency>
 
     <dependency>
@@ -153,6 +153,12 @@
     <dependency>
       <groupId>org.apache.curator</groupId>
       <artifactId>curator-framework</artifactId>
+      <exclusions>
+        <exclusion>
+          <groupId>log4j</groupId>
+          <artifactId>log4j</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
 
   <dependency>

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-node/src/test/resources/log4j.properties
----------------------------------------------------------------------
diff --git a/flume-ng-node/src/test/resources/log4j.properties b/flume-ng-node/src/test/resources/log4j.properties
deleted file mode 100644
index 5d38311..0000000
--- a/flume-ng-node/src/test/resources/log4j.properties
+++ /dev/null
@@ -1,24 +0,0 @@
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-#  http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-# KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-
-log4j.rootCategory = INFO, out
-
-log4j.appender.out = org.apache.log4j.ConsoleAppender
-log4j.appender.out.layout = org.apache.log4j.PatternLayout
-log4j.appender.out.layout.ConversionPattern = %d (%t) [%p - %l] %m%n
-
-log4j.logger.org.apache.flume = DEBUG

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-node/src/test/resources/log4j2.xml
----------------------------------------------------------------------
diff --git a/flume-ng-node/src/test/resources/log4j2.xml b/flume-ng-node/src/test/resources/log4j2.xml
new file mode 100644
index 0000000..fbc44b4
--- /dev/null
+++ b/flume-ng-node/src/test/resources/log4j2.xml
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+-->
+<Configuration status="OFF">
+  <Appenders>
+    <Console name="Console" target="SYSTEM_OUT">
+      <PatternLayout pattern="%d (%t) [%p - %l] %m%n" />
+    </Console>
+  </Appenders>
+  <Loggers>
+    <Logger name="org.apache.flume" level="DEBUG"/>
+    <Root level="INFO">
+      <AppenderRef ref="Console" />
+    </Root>
+  </Loggers>
+</Configuration>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sdk/pom.xml
----------------------------------------------------------------------
diff --git a/flume-ng-sdk/pom.xml b/flume-ng-sdk/pom.xml
index fdad52b..658abce 100644
--- a/flume-ng-sdk/pom.xml
+++ b/flume-ng-sdk/pom.xml
@@ -203,10 +203,27 @@ limitations under the License.
     </dependency>
 
     <dependency>
-      <groupId>org.slf4j</groupId>
-      <artifactId>slf4j-log4j12</artifactId>
-      <!-- only used for tests -->
-      <optional>true</optional>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-api</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-core</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-slf4j-impl</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-1.2-api</artifactId>
+      <scope>test</scope>
     </dependency>
 
     <dependency>

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sdk/src/test/resources/log4j.properties
----------------------------------------------------------------------
diff --git a/flume-ng-sdk/src/test/resources/log4j.properties b/flume-ng-sdk/src/test/resources/log4j.properties
deleted file mode 100644
index 361158d..0000000
--- a/flume-ng-sdk/src/test/resources/log4j.properties
+++ /dev/null
@@ -1,24 +0,0 @@
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-#   http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-# KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-
-log4j.rootLogger = INFO, out
-
-log4j.appender.out = org.apache.log4j.ConsoleAppender
-log4j.appender.out.layout = org.apache.log4j.PatternLayout
-log4j.appender.out.layout.ConversionPattern = %d (%t) [%p - %l] %m%n
-
-log4j.logger.org.apache.flume = DEBUG

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sdk/src/test/resources/log4j2.xml
----------------------------------------------------------------------
diff --git a/flume-ng-sdk/src/test/resources/log4j2.xml b/flume-ng-sdk/src/test/resources/log4j2.xml
new file mode 100644
index 0000000..fbc44b4
--- /dev/null
+++ b/flume-ng-sdk/src/test/resources/log4j2.xml
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+-->
+<Configuration status="OFF">
+  <Appenders>
+    <Console name="Console" target="SYSTEM_OUT">
+      <PatternLayout pattern="%d (%t) [%p - %l] %m%n" />
+    </Console>
+  </Appenders>
+  <Loggers>
+    <Logger name="org.apache.flume" level="DEBUG"/>
+    <Root level="INFO">
+      <AppenderRef ref="Console" />
+    </Root>
+  </Loggers>
+</Configuration>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-dataset-sink/pom.xml
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-dataset-sink/pom.xml b/flume-ng-sinks/flume-dataset-sink/pom.xml
index 1b0c325..e11deb4 100644
--- a/flume-ng-sinks/flume-dataset-sink/pom.xml
+++ b/flume-ng-sinks/flume-dataset-sink/pom.xml
@@ -128,8 +128,26 @@ limitations under the License.
     </dependency>
 
     <dependency>
-      <groupId>org.slf4j</groupId>
-      <artifactId>slf4j-log4j12</artifactId>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-api</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-core</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-slf4j-impl</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-1.2-api</artifactId>
       <scope>test</scope>
     </dependency>
 

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hdfs-sink/pom.xml
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hdfs-sink/pom.xml b/flume-ng-sinks/flume-hdfs-sink/pom.xml
index f821be2..70157d2 100644
--- a/flume-ng-sinks/flume-hdfs-sink/pom.xml
+++ b/flume-ng-sinks/flume-hdfs-sink/pom.xml
@@ -73,8 +73,26 @@ limitations under the License.
     </dependency>
 
     <dependency>
-      <groupId>org.slf4j</groupId>
-      <artifactId>slf4j-log4j12</artifactId>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-api</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-core</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-slf4j-impl</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-1.2-api</artifactId>
       <scope>test</scope>
     </dependency>
 

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hdfs-sink/src/test/resources/log4j.properties
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hdfs-sink/src/test/resources/log4j.properties b/flume-ng-sinks/flume-hdfs-sink/src/test/resources/log4j.properties
deleted file mode 100644
index 252b5ea..0000000
--- a/flume-ng-sinks/flume-hdfs-sink/src/test/resources/log4j.properties
+++ /dev/null
@@ -1,26 +0,0 @@
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-#   http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-# KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-
-log4j.rootLogger = INFO, out
-
-log4j.appender.out = org.apache.log4j.ConsoleAppender
-log4j.appender.out.layout = org.apache.log4j.PatternLayout
-log4j.appender.out.layout.ConversionPattern = %d (%t) [%p - %l] %m%n
-
-log4j.logger.org.apache.flume = DEBUG
-log4j.logger.org.apache.hadoop = WARN
-log4j.logger.org.mortbay = WARN

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hdfs-sink/src/test/resources/log4j2.xml
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hdfs-sink/src/test/resources/log4j2.xml b/flume-ng-sinks/flume-hdfs-sink/src/test/resources/log4j2.xml
new file mode 100644
index 0000000..91a23f8
--- /dev/null
+++ b/flume-ng-sinks/flume-hdfs-sink/src/test/resources/log4j2.xml
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+
+-->
+<Configuration status="OFF">
+  <Appenders>
+    <Console name="Console" target="SYSTEM_OUT">
+      <PatternLayout pattern="%d (%t) [%p - %l] %m%n" />
+    </Console>
+  </Appenders>
+  <Loggers>
+    <Logger name="org.apache.flume" level="DEBUG"/>
+    <Logger name="org.apache.hadoop" level="WARN"/>
+    <Logger name="org.mortbay" level="WARN"/>
+    <Root level="INFO">
+      <AppenderRef ref="Console" />
+    </Root>
+  </Loggers>
+</Configuration>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/README_DO_NOT_TOUCH_FILES.txt
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/README_DO_NOT_TOUCH_FILES.txt b/flume-ng-sinks/flume-hive-sink/metastore_db/README_DO_NOT_TOUCH_FILES.txt
new file mode 100644
index 0000000..a4bc145
--- /dev/null
+++ b/flume-ng-sinks/flume-hive-sink/metastore_db/README_DO_NOT_TOUCH_FILES.txt
@@ -0,0 +1,9 @@
+
+# *************************************************************************
+# ***              DO NOT TOUCH FILES IN THIS DIRECTORY!                ***
+# *** FILES IN THIS DIRECTORY AND SUBDIRECTORIES CONSTITUTE A DERBY     ***
+# *** DATABASE, WHICH INCLUDES THE DATA (USER AND SYSTEM) AND THE       ***
+# *** FILES NECESSARY FOR DATABASE RECOVERY.                            ***
+# *** EDITING, ADDING, OR DELETING ANY OF THESE FILES MAY CAUSE DATA    ***
+# *** CORRUPTION AND LEAVE THE DATABASE IN A NON-RECOVERABLE STATE.     ***
+# *************************************************************************
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/db.lck
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/db.lck b/flume-ng-sinks/flume-hive-sink/metastore_db/db.lck
new file mode 100644
index 0000000..da31320
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/db.lck differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/dbex.lck
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/dbex.lck b/flume-ng-sinks/flume-hive-sink/metastore_db/dbex.lck
new file mode 100644
index 0000000..720d64f
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/dbex.lck differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/log/README_DO_NOT_TOUCH_FILES.txt
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/log/README_DO_NOT_TOUCH_FILES.txt b/flume-ng-sinks/flume-hive-sink/metastore_db/log/README_DO_NOT_TOUCH_FILES.txt
new file mode 100644
index 0000000..56df292
--- /dev/null
+++ b/flume-ng-sinks/flume-hive-sink/metastore_db/log/README_DO_NOT_TOUCH_FILES.txt
@@ -0,0 +1,8 @@
+
+# *************************************************************************
+# ***              DO NOT TOUCH FILES IN THIS DIRECTORY!                ***
+# *** FILES IN THIS DIRECTORY ARE USED BY THE DERBY DATABASE RECOVERY   ***
+# *** SYSTEM. EDITING, ADDING, OR DELETING FILES IN THIS DIRECTORY      ***
+# *** WILL CAUSE THE DERBY RECOVERY SYSTEM TO FAIL, LEADING TO          ***
+# *** NON-RECOVERABLE CORRUPT DATABASES.                                ***
+# *************************************************************************
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/log/log.ctrl
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/log/log.ctrl b/flume-ng-sinks/flume-hive-sink/metastore_db/log/log.ctrl
new file mode 100644
index 0000000..21f6d28
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/log/log.ctrl differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/log/log10.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/log/log10.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/log/log10.dat
new file mode 100644
index 0000000..7e17daf
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/log/log10.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/log/log11.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/log/log11.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/log/log11.dat
new file mode 100644
index 0000000..b5c53f9
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/log/log11.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/log/logmirror.ctrl
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/log/logmirror.ctrl b/flume-ng-sinks/flume-hive-sink/metastore_db/log/logmirror.ctrl
new file mode 100644
index 0000000..21f6d28
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/log/logmirror.ctrl differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/README_DO_NOT_TOUCH_FILES.txt
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/README_DO_NOT_TOUCH_FILES.txt b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/README_DO_NOT_TOUCH_FILES.txt
new file mode 100644
index 0000000..2bdad06
--- /dev/null
+++ b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/README_DO_NOT_TOUCH_FILES.txt
@@ -0,0 +1,8 @@
+
+# *************************************************************************
+# ***              DO NOT TOUCH FILES IN THIS DIRECTORY!                ***
+# *** FILES IN THIS DIRECTORY ARE USED BY THE DERBY DATABASE TO STORE   *** 
+# *** USER AND SYSTEM DATA. EDITING, ADDING, OR DELETING FILES IN THIS  ***
+# *** DIRECTORY WILL CORRUPT THE ASSOCIATED DERBY DATABASE AND MAKE     ***
+# *** IT NON-RECOVERABLE.                                               ***
+# *************************************************************************
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c10.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c10.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c10.dat
new file mode 100644
index 0000000..85b00ab
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c10.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c101.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c101.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c101.dat
new file mode 100644
index 0000000..17704ab
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c101.dat differ

http://git-wip-us.apache.org/repos/asf/flume/blob/140ea5d2/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c111.dat
----------------------------------------------------------------------
diff --git a/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c111.dat b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c111.dat
new file mode 100644
index 0000000..dc06539
Binary files /dev/null and b/flume-ng-sinks/flume-hive-sink/metastore_db/seg0/c111.dat differ