Uses of Class
org.apache.flink.core.fs.FileSystem
-
Packages that use FileSystem Package Description org.apache.flink.api.common.io org.apache.flink.core.fs org.apache.flink.core.fs.local -
-
Uses of FileSystem in org.apache.flink.api.common.io
Methods in org.apache.flink.api.common.io with parameters of type FileSystem Modifier and Type Method Description protected FileInputFormat.FileBaseStatisticsFileInputFormat. getFileStats(FileInputFormat.FileBaseStatistics cachedStats, Path filePath, FileSystem fs, ArrayList<FileStatus> files) -
Uses of FileSystem in org.apache.flink.core.fs
Subclasses of FileSystem in org.apache.flink.core.fs Modifier and Type Class Description classLimitedConnectionsFileSystemA file system that limits the number of concurrently open input streams, output streams, and total streams for a target file system.classSafetyNetWrapperFileSystemThis is aWrappingProxyaroundFileSystemwhich (i) wraps all opened streams asClosingFSDataInputStreamorClosingFSDataOutputStreamand (ii) registers them to aSafetyNetCloseableRegistry.Methods in org.apache.flink.core.fs that return FileSystem Modifier and Type Method Description FileSystemConnectionLimitingFactory. create(URI fsUri)FileSystemFileSystemFactory. create(URI fsUri)Creates a new file system for the given file system URI.FileSystemPluginFileSystemFactory. create(URI fsUri)static FileSystemFileSystem. get(URI uri)Returns a reference to theFileSysteminstance for accessing the file system identified by the givenURI.FileSystemPath. getFileSystem()Returns the FileSystem that owns this Path.static FileSystemFileSystem. getLocalFileSystem()Returns a reference to theFileSysteminstance for accessing the local file system.static FileSystemFileSystem. getUnguardedFileSystem(URI fsUri)FileSystemSafetyNetWrapperFileSystem. getWrappedDelegate()Methods in org.apache.flink.core.fs with parameters of type FileSystem Modifier and Type Method Description static PathEntropyInjector. addEntropy(FileSystem fs, Path path)Handles entropy injection across regular and entropy-aware file systems.static OutputStreamAndPathEntropyInjector. createEntropyAware(FileSystem fs, Path path, FileSystem.WriteMode writeMode)Handles entropy injection across regular and entropy-aware file systems.static booleanEntropyInjector. isEntropyInjecting(FileSystem fs, Path target)PathPath. makeQualified(FileSystem fs)Returns a qualified path object.static PathEntropyInjector. removeEntropyMarkerIfPresent(FileSystem fs, Path path)Removes the entropy marker string from the path, if the given file system is an entropy-injecting file system (implementsEntropyInjectingFileSystem) and the entropy marker key is present.Constructors in org.apache.flink.core.fs with parameters of type FileSystem Constructor Description LimitedConnectionsFileSystem(FileSystem originalFs, int maxNumOpenStreamsTotal)Creates a new output connection limiting file system.LimitedConnectionsFileSystem(FileSystem originalFs, int maxNumOpenStreamsTotal, int maxNumOpenOutputStreams, int maxNumOpenInputStreams, long streamOpenTimeout, long streamInactivityTimeout)Creates a new output connection limiting file system, limiting input and output streams with potentially different quotas.LimitedConnectionsFileSystem(FileSystem originalFs, int maxNumOpenStreamsTotal, long streamOpenTimeout, long streamInactivityTimeout)Creates a new output connection limiting file system.SafetyNetWrapperFileSystem(FileSystem unsafeFileSystem, SafetyNetCloseableRegistry registry) -
Uses of FileSystem in org.apache.flink.core.fs.local
Subclasses of FileSystem in org.apache.flink.core.fs.local Modifier and Type Class Description classLocalFileSystemThe classLocalFileSystemis an implementation of theFileSysteminterface for the local file system of the machine where the JVM runs.Methods in org.apache.flink.core.fs.local that return FileSystem Modifier and Type Method Description FileSystemLocalFileSystemFactory. create(URI fsUri)Constructors in org.apache.flink.core.fs.local with parameters of type FileSystem Constructor Description LocalFileStatus(File f, FileSystem fs)Creates aLocalFileStatusobject from a givenFileobject.
-