Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
The Hadoop Filesystem driver that's compatible with Azure Data Lake Storage uses the scheme identifier abfs (Azure Blob File System). Like other Hadoop Filesystem drivers, the ABFS driver uses a URI format to address files and directories within a Data Lake Storage enabled account.
ABFS URI syntax for Azure Data Lake Storage
The Azure Blob File System driver works with the Data Lake Storage endpoint of an account even if that account doesn't have a hierarchical namespace enabled. If the storage account doesn't have a hierarchical namespace, use the following shorthand URI syntax:
abfs[s]1://<file_system>2@<account_name>3.dfs.core.windows.net/<path>4/<file_name>5
Scheme identifier: The
abfsprotocol is used as the scheme identifier. If you add ansat the end (abfss), the ABFS Hadoop client driver always uses Transport Layer Security (TLS) regardless of the authentication method chosen. If you choose OAuth as your authentication, the client driver always uses TLS even if you specifyabfsinstead ofabfssbecause OAuth solely relies on the TLS layer. Finally, if you choose to use the older method of storage account key, the client driver interpretsabfsto mean that you don't want to use TLS.File system: The parent location that holds the files and folders. This location is the same as containers in the Azure Storage Blob service.
Account name: The name you give to your storage account during creation.
Paths: A forward slash delimited (
/) representation of the directory structure.File name: The name of the individual file. This parameter is optional if you're addressing a directory.
If the account you want to address has a hierarchical namespace, use the following shorthand URI syntax:
/<path>1/<file_name>2
Path: A forward slash delimited (
/) representation of the directory structure.File Name: The name of the individual file.