rdblue commented on a change in pull request #14: Pluggable file I/O submodule in TableOperations URL: https://github.com/apache/incubator-iceberg/pull/14#discussion_r239297684
########## File path: core/src/main/java/com/netflix/iceberg/hadoop/HadoopFileIO.java ########## @@ -0,0 +1,55 @@ +package com.netflix.iceberg.hadoop; + +import com.netflix.iceberg.FileIO; +import com.netflix.iceberg.exceptions.RuntimeIOException; +import com.netflix.iceberg.io.InputFile; +import com.netflix.iceberg.io.OutputFile; +import org.apache.hadoop.conf.Configuration; +import org.apache.hadoop.fs.FileSystem; +import org.apache.hadoop.fs.Path; + +import java.io.IOException; +import java.io.ObjectInputStream; +import java.io.ObjectOutputStream; + +public class HadoopFileIO implements FileIO { + private static final long serialVersionUID = 1L; Review comment: No need for serialVersionUID because Iceberg makes no guarantees about Java serialization compatibility other than with the same Jar version everywhere. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services