Example usage for org.apache.hadoop.fs.azure NativeAzureFileSystem NativeAzureFileSystem

List of usage examples for org.apache.hadoop.fs.azure NativeAzureFileSystem NativeAzureFileSystem

Introduction

In this page you can find the example usage for org.apache.hadoop.fs.azure NativeAzureFileSystem NativeAzureFileSystem.

Prototype

public NativeAzureFileSystem() 

Source Link

Usage

From source file:org.apache.flink.fs.azurefs.AbstractAzureFSFactory.java

License:Apache License

private org.apache.hadoop.fs.FileSystem createInitializedAzureFS(URI fsUri, Configuration flinkConfig)
        throws IOException {
    org.apache.hadoop.conf.Configuration hadoopConfig = configLoader.getOrLoadHadoopConfig();

    org.apache.hadoop.fs.FileSystem azureFS = new NativeAzureFileSystem();
    azureFS.initialize(fsUri, hadoopConfig);

    return azureFS;
}