You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hudi.apache.org by da...@apache.org on 2023/04/01 03:21:57 UTC

[hudi] branch master updated: [MINOR] Remove unnecessary KryoSerializable interface in HoodieSparkReocrd class signature (#8333)

This is an automated email from the ASF dual-hosted git repository.

danny0405 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hudi.git


The following commit(s) were added to refs/heads/master by this push:
     new e9c5b58838d [MINOR] Remove unnecessary KryoSerializable interface in HoodieSparkReocrd class signature (#8333)
e9c5b58838d is described below

commit e9c5b58838d539b4e2d4f58860dff79f4d7c0aac
Author: Wechar Yu <yu...@gmail.com>
AuthorDate: Sat Apr 1 11:21:49 2023 +0800

    [MINOR] Remove unnecessary KryoSerializable interface in HoodieSparkReocrd class signature (#8333)
---
 .../src/main/java/org/apache/hudi/common/model/HoodieSparkRecord.java  | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/hudi-client/hudi-spark-client/src/main/java/org/apache/hudi/common/model/HoodieSparkRecord.java b/hudi-client/hudi-spark-client/src/main/java/org/apache/hudi/common/model/HoodieSparkRecord.java
index 7756d2502e8..49ff1979f05 100644
--- a/hudi-client/hudi-spark-client/src/main/java/org/apache/hudi/common/model/HoodieSparkRecord.java
+++ b/hudi-client/hudi-spark-client/src/main/java/org/apache/hudi/common/model/HoodieSparkRecord.java
@@ -19,7 +19,6 @@
 package org.apache.hudi.common.model;
 
 import com.esotericsoftware.kryo.Kryo;
-import com.esotericsoftware.kryo.KryoSerializable;
 import com.esotericsoftware.kryo.io.Input;
 import com.esotericsoftware.kryo.io.Output;
 import org.apache.avro.Schema;
@@ -68,7 +67,7 @@ import static org.apache.spark.sql.types.DataTypes.StringType;
  * </ul>
  *
  */
-public class HoodieSparkRecord extends HoodieRecord<InternalRow> implements KryoSerializable {
+public class HoodieSparkRecord extends HoodieRecord<InternalRow> {
 
   /**
    * Record copy operation to avoid double copying. InternalRow do not need to copy twice.