public class HadoopFsFactory extends Object implements FileSystemFactory
This factory calls Hadoop's mechanism to find a file system implementation for a given file
system scheme (a FileSystem
) and wraps it as a Flink file system
(a FileSystem
).
Constructor and Description |
---|
HadoopFsFactory() |
Modifier and Type | Method and Description |
---|---|
void |
configure(Configuration config)
Applies the given configuration to this factory.
|
FileSystem |
create(URI fsUri)
Creates a new file system for the given file system URI.
|
String |
getScheme()
Gets the scheme of the file system created by this factory.
|
public String getScheme()
FileSystemFactory
getScheme
in interface FileSystemFactory
public void configure(Configuration config)
FileSystemFactory
FileSystemFactory.create(URI)
should take the configuration into
account.configure
in interface FileSystemFactory
config
- The configuration to apply.public FileSystem create(URI fsUri) throws IOException
FileSystemFactory
create
in interface FileSystemFactory
fsUri
- The URI that describes the file system.IOException
- Thrown if the file system could not be instantiated.Copyright © 2014–2020 The Apache Software Foundation. All rights reserved.