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 2015/12/24 20:50:38 UTC

hive git commit: HIVE-12743: RCFileInputFormat needs to be registered with kryo (Prasanth Jayachandran reviewed by Sergey Shelukhin)

Repository: hive
Updated Branches:
  refs/heads/master 7e07a278a -> b9a17486d


HIVE-12743: RCFileInputFormat needs to be registered with kryo (Prasanth Jayachandran reviewed by Sergey Shelukhin)


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

Branch: refs/heads/master
Commit: b9a17486d741087fb07cb84184d21c7a4599d0b3
Parents: 7e07a27
Author: Prasanth Jayachandran <j....@gmail.com>
Authored: Thu Dec 24 13:49:50 2015 -0600
Committer: Prasanth Jayachandran <j....@gmail.com>
Committed: Thu Dec 24 13:50:20 2015 -0600

----------------------------------------------------------------------
 .../org/apache/hadoop/hive/ql/exec/SerializationUtilities.java     | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hive/blob/b9a17486/ql/src/java/org/apache/hadoop/hive/ql/exec/SerializationUtilities.java
----------------------------------------------------------------------
diff --git a/ql/src/java/org/apache/hadoop/hive/ql/exec/SerializationUtilities.java b/ql/src/java/org/apache/hadoop/hive/ql/exec/SerializationUtilities.java
index 803f492..45f50c3 100644
--- a/ql/src/java/org/apache/hadoop/hive/ql/exec/SerializationUtilities.java
+++ b/ql/src/java/org/apache/hadoop/hive/ql/exec/SerializationUtilities.java
@@ -35,6 +35,7 @@ import org.apache.commons.lang3.tuple.Pair;
 import org.apache.hadoop.fs.Path;
 import org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat;
 import org.apache.hadoop.hive.ql.io.HiveSequenceFileOutputFormat;
+import org.apache.hadoop.hive.ql.io.RCFileInputFormat;
 import org.apache.hadoop.hive.ql.log.PerfLogger;
 import org.apache.hadoop.hive.ql.plan.AbstractOperatorDesc;
 import org.apache.hadoop.hive.ql.plan.BaseWork;
@@ -91,6 +92,7 @@ public class SerializationUtilities {
       kryo.register(StandardConstantMapObjectInspector.class);
       kryo.register(StandardConstantStructObjectInspector.class);
       kryo.register(SequenceFileInputFormat.class);
+      kryo.register(RCFileInputFormat.class);
       kryo.register(HiveSequenceFileOutputFormat.class);
       kryo.register(SparkEdgeProperty.class);
       kryo.register(SparkWork.class);