Package org.apache.iceberg.hadoop
Class HadoopInputFile
java.lang.Object
org.apache.iceberg.hadoop.HadoopInputFile
- All Implemented Interfaces:
NativelyEncryptedFile
,InputFile
InputFile
implementation using the Hadoop FileSystem
API.
This class is based on Parquet's HadoopInputFile.
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
exists()
Checks whether the file exists.static HadoopInputFile
fromLocation
(CharSequence location, long length, org.apache.hadoop.conf.Configuration conf) static HadoopInputFile
fromLocation
(CharSequence location, long length, org.apache.hadoop.fs.FileSystem fs) static HadoopInputFile
fromLocation
(CharSequence location, org.apache.hadoop.conf.Configuration conf) static HadoopInputFile
fromLocation
(CharSequence location, org.apache.hadoop.fs.FileSystem fs) static HadoopInputFile
fromPath
(org.apache.hadoop.fs.Path path, long length, org.apache.hadoop.conf.Configuration conf) static HadoopInputFile
fromPath
(org.apache.hadoop.fs.Path path, long length, org.apache.hadoop.fs.FileSystem fs) static HadoopInputFile
fromPath
(org.apache.hadoop.fs.Path path, long length, org.apache.hadoop.fs.FileSystem fs, org.apache.hadoop.conf.Configuration conf) static HadoopInputFile
fromPath
(org.apache.hadoop.fs.Path path, org.apache.hadoop.conf.Configuration conf) static HadoopInputFile
fromPath
(org.apache.hadoop.fs.Path path, org.apache.hadoop.fs.FileSystem fs) static HadoopInputFile
fromPath
(org.apache.hadoop.fs.Path path, org.apache.hadoop.fs.FileSystem fs, org.apache.hadoop.conf.Configuration conf) static HadoopInputFile
fromStatus
(org.apache.hadoop.fs.FileStatus stat, org.apache.hadoop.conf.Configuration conf) static HadoopInputFile
fromStatus
(org.apache.hadoop.fs.FileStatus stat, org.apache.hadoop.fs.FileSystem fs) static HadoopInputFile
fromStatus
(org.apache.hadoop.fs.FileStatus stat, org.apache.hadoop.fs.FileSystem fs, org.apache.hadoop.conf.Configuration conf) String[]
getBlockLocations
(long start, long end) org.apache.hadoop.conf.Configuration
getConf()
org.apache.hadoop.fs.FileSystem
long
Returns the total length of the file, in bytesorg.apache.hadoop.fs.Path
getPath()
org.apache.hadoop.fs.FileStatus
getStat()
location()
The fully-qualified location of the input file as a String.Opens a newSeekableInputStream
for the underlying data filevoid
setNativeCryptoParameters
(NativeFileCryptoParameters nativeCryptoParameters) toString()
-
Field Details
-
NO_LOCATION_PREFERENCE
-
-
Method Details
-
fromLocation
public static HadoopInputFile fromLocation(CharSequence location, org.apache.hadoop.conf.Configuration conf) -
fromLocation
public static HadoopInputFile fromLocation(CharSequence location, long length, org.apache.hadoop.conf.Configuration conf) -
fromLocation
public static HadoopInputFile fromLocation(CharSequence location, org.apache.hadoop.fs.FileSystem fs) -
fromLocation
public static HadoopInputFile fromLocation(CharSequence location, long length, org.apache.hadoop.fs.FileSystem fs) -
fromPath
public static HadoopInputFile fromPath(org.apache.hadoop.fs.Path path, org.apache.hadoop.conf.Configuration conf) -
fromPath
public static HadoopInputFile fromPath(org.apache.hadoop.fs.Path path, long length, org.apache.hadoop.conf.Configuration conf) -
fromPath
public static HadoopInputFile fromPath(org.apache.hadoop.fs.Path path, org.apache.hadoop.fs.FileSystem fs) -
fromPath
public static HadoopInputFile fromPath(org.apache.hadoop.fs.Path path, long length, org.apache.hadoop.fs.FileSystem fs) -
fromPath
public static HadoopInputFile fromPath(org.apache.hadoop.fs.Path path, org.apache.hadoop.fs.FileSystem fs, org.apache.hadoop.conf.Configuration conf) -
fromPath
public static HadoopInputFile fromPath(org.apache.hadoop.fs.Path path, long length, org.apache.hadoop.fs.FileSystem fs, org.apache.hadoop.conf.Configuration conf) -
fromStatus
public static HadoopInputFile fromStatus(org.apache.hadoop.fs.FileStatus stat, org.apache.hadoop.conf.Configuration conf) -
fromStatus
public static HadoopInputFile fromStatus(org.apache.hadoop.fs.FileStatus stat, org.apache.hadoop.fs.FileSystem fs) -
fromStatus
public static HadoopInputFile fromStatus(org.apache.hadoop.fs.FileStatus stat, org.apache.hadoop.fs.FileSystem fs, org.apache.hadoop.conf.Configuration conf) -
getLength
public long getLength()Description copied from interface:InputFile
Returns the total length of the file, in bytes -
newStream
Description copied from interface:InputFile
Opens a newSeekableInputStream
for the underlying data file -
getConf
public org.apache.hadoop.conf.Configuration getConf() -
getFileSystem
public org.apache.hadoop.fs.FileSystem getFileSystem() -
getStat
public org.apache.hadoop.fs.FileStatus getStat() -
getPath
public org.apache.hadoop.fs.Path getPath() -
getBlockLocations
-
location
Description copied from interface:InputFile
The fully-qualified location of the input file as a String. -
exists
public boolean exists()Description copied from interface:InputFile
Checks whether the file exists. -
nativeCryptoParameters
- Specified by:
nativeCryptoParameters
in interfaceNativelyEncryptedFile
-
setNativeCryptoParameters
- Specified by:
setNativeCryptoParameters
in interfaceNativelyEncryptedFile
-
toString
-