You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by pr...@apache.org on 2018/06/15 18:34:59 UTC

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)

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 <nd...@hortonworks.com>
Authored: Fri Jun 15 11:32:55 2018 -0700
Committer: Prasanth Jayachandran <pr...@apache.org>
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<NullWritable, OrcStruct>,
     }
 
     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<NullWritable, OrcStruct>,
         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() +