Example usage for org.apache.hadoop.fs.s3a S3AFileSystem getConf

List of usage examples for org.apache.hadoop.fs.s3a S3AFileSystem getConf

Introduction

In this page you can find the example usage for org.apache.hadoop.fs.s3a S3AFileSystem getConf.

Prototype

@Override
    public Configuration getConf() 

Source Link

Usage

From source file:org.apache.flink.fs.s3hadoop.S3FileSystemFactory.java

License:Apache License

@Nullable
@Override/*from  ww w  . j  a  v a  2  s . com*/
protected S3MultiPartUploader getS3AccessHelper(FileSystem fs) {
    final S3AFileSystem s3Afs = (S3AFileSystem) fs;
    return new HadoopS3MultiPartUploader(s3Afs, s3Afs.getConf());
}