You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by mm...@apache.org on 2016/07/28 00:01:12 UTC

hive git commit: HIVE-14332: Reduce logging from VectorMapOperator (Matt McCline, reviewed by Siddharth Seth)

Repository: hive
Updated Branches:
  refs/heads/master e1ddf9c78 -> 44d39c6f2


HIVE-14332: Reduce logging from VectorMapOperator (Matt McCline, reviewed by Siddharth Seth)


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

Branch: refs/heads/master
Commit: 44d39c6f2f8e60c4ed7c0d0c133732436859920c
Parents: e1ddf9c
Author: Matt McCline <mm...@hortonworks.com>
Authored: Wed Jul 27 17:00:31 2016 -0700
Committer: Matt McCline <mm...@hortonworks.com>
Committed: Wed Jul 27 17:00:54 2016 -0700

----------------------------------------------------------------------
 .../apache/hadoop/hive/ql/exec/vector/VectorMapOperator.java  | 7 -------
 1 file changed, 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hive/blob/44d39c6f/ql/src/java/org/apache/hadoop/hive/ql/exec/vector/VectorMapOperator.java
----------------------------------------------------------------------
diff --git a/ql/src/java/org/apache/hadoop/hive/ql/exec/vector/VectorMapOperator.java b/ql/src/java/org/apache/hadoop/hive/ql/exec/vector/VectorMapOperator.java
index 56af05e..a65cac0 100644
--- a/ql/src/java/org/apache/hadoop/hive/ql/exec/vector/VectorMapOperator.java
+++ b/ql/src/java/org/apache/hadoop/hive/ql/exec/vector/VectorMapOperator.java
@@ -536,13 +536,6 @@ public class VectorMapOperator extends AbstractMapOperator {
     for (Map.Entry<Path, ArrayList<String>> entry : conf.getPathToAliases().entrySet()) {
       Path path = entry.getKey();
       PartitionDesc partDesc = conf.getPathToPartitionInfo().get(path);
-      ArrayList<String> aliases = entry.getValue();
-
-      VectorPartitionDesc vectorPartDesc = partDesc.getVectorPartitionDesc();
-      LOG.info("VectorMapOperator path: " + path +
-          ", read type " + vectorPartDesc.getVectorMapOperatorReadType().name() +
-          ", vector deserialize type " + vectorPartDesc.getVectorDeserializeType().name() +
-          ", aliases " + aliases);
 
       VectorPartitionContext vectorPartitionContext;
       if (!partitionContextMap.containsKey(partDesc)) {