public class ADLSFileIO extends java.lang.Object implements DelegateFileIO
| Constructor and Description |
|---|
ADLSFileIO()
No-arg constructor to load the FileIO dynamically.
|
| Modifier and Type | Method and Description |
|---|---|
com.azure.storage.file.datalake.DataLakeFileSystemClient |
client(java.lang.String path) |
void |
deleteFile(java.lang.String path)
Delete the file at the given path.
|
void |
deleteFiles(java.lang.Iterable<java.lang.String> pathsToDelete)
Delete the files at the given paths.
|
void |
deletePrefix(java.lang.String prefix)
Delete all files under a prefix.
|
void |
initialize(java.util.Map<java.lang.String,java.lang.String> props)
Initialize File IO from catalog properties.
|
java.lang.Iterable<FileInfo> |
listPrefix(java.lang.String prefix)
Return an iterable of all files under a prefix.
|
InputFile |
newInputFile(java.lang.String path)
Get a
InputFile instance to read bytes from the file at the given path. |
InputFile |
newInputFile(java.lang.String path,
long length)
Get a
InputFile instance to read bytes from the file at the given path, with a known
file length. |
OutputFile |
newOutputFile(java.lang.String path)
Get a
OutputFile instance to write bytes to the file at the given path. |
java.util.Map<java.lang.String,java.lang.String> |
properties()
Returns the property map used to configure this FileIO
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitclose, deleteFile, deleteFile, newInputFile, newInputFile, newInputFilepublic ADLSFileIO()
All fields are initialized by calling initialize(Map) later.
public InputFile newInputFile(java.lang.String path)
FileIOInputFile instance to read bytes from the file at the given path.newInputFile in interface FileIOpublic InputFile newInputFile(java.lang.String path, long length)
FileIOInputFile instance to read bytes from the file at the given path, with a known
file length.newInputFile in interface FileIOpublic OutputFile newOutputFile(java.lang.String path)
FileIOOutputFile instance to write bytes to the file at the given path.newOutputFile in interface FileIOpublic void deleteFile(java.lang.String path)
FileIOdeleteFile in interface FileIOpublic java.util.Map<java.lang.String,java.lang.String> properties()
FileIOproperties in interface FileIOpublic com.azure.storage.file.datalake.DataLakeFileSystemClient client(java.lang.String path)
public void initialize(java.util.Map<java.lang.String,java.lang.String> props)
FileIOinitialize in interface FileIOprops - catalog propertiespublic void deleteFiles(java.lang.Iterable<java.lang.String> pathsToDelete)
throws BulkDeletionFailureException
SupportsBulkOperationsdeleteFiles in interface SupportsBulkOperationspathsToDelete - The paths to deleteBulkDeletionFailureException - in case of failure to delete at least 1 filepublic java.lang.Iterable<FileInfo> listPrefix(java.lang.String prefix)
SupportsPrefixOperationsHierarchical file systems (e.g. HDFS) may impose additional restrictions like the prefix must fully match a directory whereas key/value object stores may allow for arbitrary prefixes.
listPrefix in interface SupportsPrefixOperationsprefix - prefix to listpublic void deletePrefix(java.lang.String prefix)
SupportsPrefixOperationsHierarchical file systems (e.g. HDFS) may impose additional restrictions like the prefix must fully match a directory whereas key/value object stores may allow for arbitrary prefixes.
deletePrefix in interface SupportsPrefixOperationsprefix - prefix to delete