hive git commit: HIVE-19912: Schema evolution checks prints a log line in INFO mode for each vectorized rowbatch, impacts performance (Nita Dembla reviewed by Prasanth Jayachandran)

2018-06-15 Thread prasanthj
Repository: hive
Updated Branches:
  refs/heads/branch-3.0 120a79b07 -> c4af1cd31


HIVE-19912: Schema evolution checks prints a log line in INFO mode for each 
vectorized rowbatch, impacts performance (Nita Dembla reviewed by Prasanth 
Jayachandran)


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

Branch: refs/heads/branch-3.0
Commit: c4af1cd31c7ba5f626a0799a4ed5fbc74944d37f
Parents: 120a79b
Author: Nita Dembla 
Authored: Fri Jun 15 11:32:55 2018 -0700
Committer: Prasanth Jayachandran 
Committed: Fri Jun 15 11:35:31 2018 -0700

--
 .../org/apache/hadoop/hive/ql/io/orc/OrcInputFormat.java | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hive/blob/c4af1cd3/ql/src/java/org/apache/hadoop/hive/ql/io/orc/OrcInputFormat.java
--
diff --git a/ql/src/java/org/apache/hadoop/hive/ql/io/orc/OrcInputFormat.java 
b/ql/src/java/org/apache/hadoop/hive/ql/io/orc/OrcInputFormat.java
index 65b1b20..52816ba 100644
--- a/ql/src/java/org/apache/hadoop/hive/ql/io/orc/OrcInputFormat.java
+++ b/ql/src/java/org/apache/hadoop/hive/ql/io/orc/OrcInputFormat.java
@@ -2553,8 +2553,8 @@ public class OrcInputFormat implements 
InputFormat,
 }
 
 if (haveSchemaEvolutionProperties) {
-  if (LOG.isInfoEnabled()) {
-LOG.info("Using schema evolution configuration variables 
schema.evolution.columns " +
+  if (LOG.isDebugEnabled()) {
+LOG.debug("Using schema evolution configuration variables 
schema.evolution.columns " +
 schemaEvolutionColumnNames.toString() +
 " / schema.evolution.columns.types " +
 schemaEvolutionTypeDescrs.toString() +
@@ -2596,8 +2596,8 @@ public class OrcInputFormat implements 
InputFormat,
 schemaEvolutionTypeDescrs = 
Lists.newArrayList(schemaEvolutionTypeDescrs.subList(0, virtualColumnClipNum));
   }
 
-  if (LOG.isInfoEnabled()) {
-LOG.info("Using column configuration variables columns " +
+  if (LOG.isDebugEnabled()) {
+LOG.debug("Using column configuration variables columns " +
 schemaEvolutionColumnNames.toString() +
 " / columns.types " +
 schemaEvolutionTypeDescrs.toString() +



hive git commit: HIVE-19912: Schema evolution checks prints a log line in INFO mode for each vectorized rowbatch, impacts performance (Nita Dembla reviewed by Prasanth Jayachandran)

2018-06-15 Thread prasanthj
Repository: hive
Updated Branches:
  refs/heads/branch-3 208684941 -> 90789fe06


HIVE-19912: Schema evolution checks prints a log line in INFO mode for each 
vectorized rowbatch, impacts performance (Nita Dembla reviewed by Prasanth 
Jayachandran)


Project: http://git-wip-us.apache.org/repos/asf/hive/repo
Commit: http://git-wip-us.apache.org/repos/asf/hive/commit/90789fe0
Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/90789fe0
Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/90789fe0

Branch: refs/heads/branch-3
Commit: 90789fe063d7e270840dad476f6f22c861db9633
Parents: 2086849
Author: Nita Dembla 
Authored: Fri Jun 15 11:32:55 2018 -0700
Committer: Prasanth Jayachandran 
Committed: Fri Jun 15 11:34:37 2018 -0700

--
 .../org/apache/hadoop/hive/ql/io/orc/OrcInputFormat.java | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hive/blob/90789fe0/ql/src/java/org/apache/hadoop/hive/ql/io/orc/OrcInputFormat.java
--
diff --git a/ql/src/java/org/apache/hadoop/hive/ql/io/orc/OrcInputFormat.java 
b/ql/src/java/org/apache/hadoop/hive/ql/io/orc/OrcInputFormat.java
index 732e233..3ad6445 100644
--- a/ql/src/java/org/apache/hadoop/hive/ql/io/orc/OrcInputFormat.java
+++ b/ql/src/java/org/apache/hadoop/hive/ql/io/orc/OrcInputFormat.java
@@ -2576,8 +2576,8 @@ public class OrcInputFormat implements 
InputFormat,
 }
 
 if (haveSchemaEvolutionProperties) {
-  if (LOG.isInfoEnabled()) {
-LOG.info("Using schema evolution configuration variables 
schema.evolution.columns " +
+  if (LOG.isDebugEnabled()) {
+LOG.debug("Using schema evolution configuration variables 
schema.evolution.columns " +
 schemaEvolutionColumnNames.toString() +
 " / schema.evolution.columns.types " +
 schemaEvolutionTypeDescrs.toString() +
@@ -2619,8 +2619,8 @@ public class OrcInputFormat implements 
InputFormat,
 schemaEvolutionTypeDescrs = 
Lists.newArrayList(schemaEvolutionTypeDescrs.subList(0, virtualColumnClipNum));
   }
 
-  if (LOG.isInfoEnabled()) {
-LOG.info("Using column configuration variables columns " +
+  if (LOG.isDebugEnabled()) {
+LOG.debug("Using column configuration variables columns " +
 schemaEvolutionColumnNames.toString() +
 " / columns.types " +
 schemaEvolutionTypeDescrs.toString() +



hive git commit: HIVE-19912: Schema evolution checks prints a log line in INFO mode for each vectorized rowbatch, impacts performance (Nita Dembla reviewed by Prasanth Jayachandran)

2018-06-15 Thread prasanthj
Repository: hive
Updated Branches:
  refs/heads/master 0363880b5 -> 5a9a328a8


HIVE-19912: Schema evolution checks prints a log line in INFO mode for each 
vectorized rowbatch, impacts performance (Nita Dembla reviewed by Prasanth 
Jayachandran)


Project: http://git-wip-us.apache.org/repos/asf/hive/repo
Commit: http://git-wip-us.apache.org/repos/asf/hive/commit/5a9a328a
Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/5a9a328a
Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/5a9a328a

Branch: refs/heads/master
Commit: 5a9a328a8129eb8bd116158e06cf37a259cf32c6
Parents: 0363880
Author: Nita Dembla 
Authored: Fri Jun 15 11:32:55 2018 -0700
Committer: Prasanth Jayachandran 
Committed: Fri Jun 15 11:34:12 2018 -0700

--
 .../org/apache/hadoop/hive/ql/io/orc/OrcInputFormat.java | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hive/blob/5a9a328a/ql/src/java/org/apache/hadoop/hive/ql/io/orc/OrcInputFormat.java
--
diff --git a/ql/src/java/org/apache/hadoop/hive/ql/io/orc/OrcInputFormat.java 
b/ql/src/java/org/apache/hadoop/hive/ql/io/orc/OrcInputFormat.java
index a789dd2..b6f92e3 100644
--- a/ql/src/java/org/apache/hadoop/hive/ql/io/orc/OrcInputFormat.java
+++ b/ql/src/java/org/apache/hadoop/hive/ql/io/orc/OrcInputFormat.java
@@ -2576,8 +2576,8 @@ public class OrcInputFormat implements 
InputFormat,
 }
 
 if (haveSchemaEvolutionProperties) {
-  if (LOG.isInfoEnabled()) {
-LOG.info("Using schema evolution configuration variables 
schema.evolution.columns " +
+  if (LOG.isDebugEnabled()) {
+LOG.debug("Using schema evolution configuration variables 
schema.evolution.columns " +
 schemaEvolutionColumnNames.toString() +
 " / schema.evolution.columns.types " +
 schemaEvolutionTypeDescrs.toString() +
@@ -2619,8 +2619,8 @@ public class OrcInputFormat implements 
InputFormat,
 schemaEvolutionTypeDescrs = 
Lists.newArrayList(schemaEvolutionTypeDescrs.subList(0, virtualColumnClipNum));
   }
 
-  if (LOG.isInfoEnabled()) {
-LOG.info("Using column configuration variables columns " +
+  if (LOG.isDebugEnabled()) {
+LOG.debug("Using column configuration variables columns " +
 schemaEvolutionColumnNames.toString() +
 " / columns.types " +
 schemaEvolutionTypeDescrs.toString() +