Azure.Storage.Files.DataLake 12.11.0-beta.1

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
This is a prerelease version of Azure.Storage.Files.DataLake.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Azure.Storage.Files.DataLake --version 12.11.0-beta.1
NuGet\Install-Package Azure.Storage.Files.DataLake -Version 12.11.0-beta.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Azure.Storage.Files.DataLake" Version="12.11.0-beta.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Azure.Storage.Files.DataLake --version 12.11.0-beta.1
#r "nuget: Azure.Storage.Files.DataLake, 12.11.0-beta.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Azure.Storage.Files.DataLake as a Cake Addin
#addin nuget:?package=Azure.Storage.Files.DataLake&version=12.11.0-beta.1&prerelease

// Install Azure.Storage.Files.DataLake as a Cake Tool
#tool nuget:?package=Azure.Storage.Files.DataLake&version=12.11.0-beta.1&prerelease

Azure Storage Files Data Lake client library for .NET

Server Version: 2021-02-12, 2020-12-06, 2020-10-02, 2020-08-04, 2020-06-12, 2020-04-08, 2020-02-10, 2019-12-12, 2019-07-07, and 2019-02-02

Azure Data Lake includes all the capabilities required to make it easy for developers, data scientists, and analysts to store data of any size, shape, and speed, and do all types of processing and analytics across platforms and languages. It removes the complexities of ingesting and storing all of your data while making it faster to get up and running with batch, streaming, and interactive analytics.

Source code | Package (NuGet) | API reference documentation | REST API documentation | Product documentation

Getting started

Install the package

Install the Azure Storage Files Data Lake client library for .NET with NuGet:

dotnet add package Azure.Storage.Files.DataLake

Prerequisites

You need an Azure subscription and a Storage Account to use this package.

To create a new Storage Account, you can use the Azure Portal, Azure PowerShell, or the Azure CLI. Here's an example using the Azure CLI:

az storage account create --name MyStorageAccount --resource-group MyResourceGroup --location westus --sku Standard_LRS

Key concepts

DataLake Storage Gen2 was designed to:

  • Service multiple petabytes of information while sustaining hundreds of gigabits of throughput
  • Allow you to easily manage massive amounts of data

Key Features of DataLake Storage Gen2 include:

  • Hadoop compatible access
  • A superset of POSIX permissions
  • Cost effective in terms of low-cost storage capacity and transactions
  • Optimized driver for big data analytics

A fundamental part of Data Lake Storage Gen2 is the addition of a hierarchical namespace to Blob storage. The hierarchical namespace organizes objects/files into a hierarchy of directories for efficient data access.

In the past, cloud-based analytics had to compromise in areas of performance, management, and security. Data Lake Storage Gen2 addresses each of these aspects in the following ways:

  • Performance is optimized because you do not need to copy or transform data as a prerequisite for analysis. The hierarchical namespace greatly improves the performance of directory management operations, which improves overall job performance.
  • Management is easier because you can organize and manipulate files through directories and subdirectories.
  • Security is enforceable because you can define POSIX permissions on directories or individual files.
  • Cost effectiveness is made possible as Data Lake Storage Gen2 is built on top of the low-cost Azure Blob storage. The additional features further lower the total cost of ownership for running big data analytics on Azure.

Data Lake Storage Gen2 offers two types of resources:

  • The filesystem used via 'DataLakeFileSystemClient'
  • The path used via 'DataLakeFileClient' or 'DataLakeDirectoryClient'
ADLS Gen2 Blob
Filesystem Container
Path (File or Directory) Blob

Note: This client library does not support hierarchical namespace (HNS) disabled storage accounts.

Thread safety

We guarantee that all client instance methods are thread-safe and independent of each other (guideline). This ensures that the recommendation of reusing client instances is always safe, even across threads.

Additional concepts

Client options | Accessing the response | Long-running operations | Handling failures | Diagnostics | Mocking | Client lifetime

Examples

Create a DataLakeServiceClient

StorageSharedKeyCredential sharedKeyCredential = new StorageSharedKeyCredential(storageAccountName, storageAccountKey);

// Create DataLakeServiceClient using StorageSharedKeyCredentials
DataLakeServiceClient serviceClient = new DataLakeServiceClient(serviceUri, sharedKeyCredential);

Create a DataLakeFileSystemClient

StorageSharedKeyCredential sharedKeyCredential = new StorageSharedKeyCredential(storageAccountName, storageAccountKey);

// Create DataLakeServiceClient using StorageSharedKeyCredentials
DataLakeServiceClient serviceClient = new DataLakeServiceClient(serviceUri, sharedKeyCredential);

// Create a DataLake Filesystem
DataLakeFileSystemClient filesystem = serviceClient.GetFileSystemClient(Randomize("sample-filesystem"));
filesystem.Create();

Create a DataLakeDirectoryClient

StorageSharedKeyCredential sharedKeyCredential = new StorageSharedKeyCredential(storageAccountName, storageAccountKey);

// Create DataLakeServiceClient using StorageSharedKeyCredentials
DataLakeServiceClient serviceClient = new DataLakeServiceClient(serviceUri, sharedKeyCredential);

// Get a reference to a filesystem named "sample-filesystem-append" and then create it
DataLakeFileSystemClient filesystem = serviceClient.GetFileSystemClient(Randomize("sample-filesystem-append"));
filesystem.Create();

// Create
DataLakeDirectoryClient directory = filesystem.GetDirectoryClient(Randomize("sample-file"));
directory.Create();

Create a DataLakeFileClient

Create DataLakeFileClient from a DataLakeDirectoryClient

// Create a DataLake Directory
DataLakeDirectoryClient directory = filesystem.CreateDirectory(Randomize("sample-directory"));
directory.Create();

// Create a DataLake File using a DataLake Directory
DataLakeFileClient file = directory.GetFileClient(Randomize("sample-file"));
file.Create();

Create DataLakeFileClient from a DataLakeFileSystemClient

// Create a DataLake Filesystem
DataLakeFileSystemClient filesystem = serviceClient.GetFileSystemClient(Randomize("sample-filesystem"));
filesystem.Create();

// Create a DataLake file using a DataLake Filesystem
DataLakeFileClient file = filesystem.GetFileClient(Randomize("sample-file"));
file.Create();

Appending Data to a DataLake File

// Create a file
DataLakeFileClient file = filesystem.GetFileClient(Randomize("sample-file"));
file.Create();

// Append data to the DataLake File
file.Append(File.OpenRead(sampleFilePath), 0);
file.Flush(SampleFileContent.Length);

Reading Data from a DataLake File

Response<FileDownloadInfo> fileContents = file.Read();

Listing/Traversing through a DataLake Filesystem

foreach (PathItem pathItem in filesystem.GetPaths())
{
    names.Add(pathItem.Name);
}

Set Permissions on a DataLake File

// Create a DataLake file so we can set the Access Controls on the files
DataLakeFileClient fileClient = filesystem.GetFileClient(Randomize("sample-file"));
fileClient.Create();

// Set the Permissions of the file
PathPermissions pathPermissions = PathPermissions.ParseSymbolicPermissions("rwxrwxrwx");
fileClient.SetPermissions(permissions: pathPermissions);

Set Access Controls (ACLs) on a DataLake File

// Create a DataLake file so we can set the Access Controls on the files
DataLakeFileClient fileClient = filesystem.GetFileClient(Randomize("sample-file"));
fileClient.Create();

// Set Access Control List
IList<PathAccessControlItem> accessControlList
    = PathAccessControlExtensions.ParseAccessControlList("user::rwx,group::r--,mask::rwx,other::---");
fileClient.SetAccessControlList(accessControlList);

Get Access Controls (ACLs) on a DataLake File

// Get Access Control List
PathAccessControl accessControlResponse = fileClient.GetAccessControl();

Rename a DataLake File

DataLakeFileClient renamedFileClient = fileClient.Rename("sample-file2");

Rename a DataLake Directory

DataLakeDirectoryClient renamedDirectoryClient = directoryClient.Rename("sample-directory2");

Get Properties on a DataLake File

// Get Properties on a File
PathProperties filePathProperties = fileClient.GetProperties();

Get Properties on a DataLake Directory

// Get Properties on a Directory
PathProperties directoryPathProperties = directoryClient.GetProperties();

Troubleshooting

All File DataLake service operations will throw a RequestFailedException on failure with helpful ErrorCodes. Many of these errors are recoverable.

Next steps

Get started with our DataLake samples:

  1. Hello World: Append, Read, and List DataLake Files (or asynchronously)
  2. Auth: Authenticate with public access, shared keys, shared access signatures, and Azure Active Directory.

Contributing

See the Storage CONTRIBUTING.md for details on building, testing, and contributing to this library.

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit cla.microsoft.com.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (22)

Showing the top 5 NuGet packages that depend on Azure.Storage.Files.DataLake:

Package Downloads
Microsoft.DataPrep The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Microsoft Azure Machine Learning Data Preparation SDK.

Service.Extensions.Azure.DataLake The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Extensions to provide consistent configurations and patterns for your service.

Inspari.Azure.Core

Package Description

Auditflo.Utility

Package Description

ManagedCode.Storage.Azure The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Storage for Azure

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
12.18.0-beta.1 2,692 12/5/2023
12.17.1 260,941 11/14/2023
12.17.0 10,625 11/6/2023
12.17.0-beta.1 508 10/16/2023
12.16.0 178,275 9/12/2023
12.16.0-beta.1 1,089 8/8/2023
12.15.0 169,290 7/11/2023
12.15.0-beta.1 768 5/30/2023
12.14.0 309,338 4/11/2023
12.14.0-beta.1 370 3/28/2023
12.13.1 64,812 3/24/2023
12.13.0 127,395 2/22/2023
12.13.0-beta.1 874 2/8/2023
12.12.1 610,430 10/13/2022
12.12.0 26,690 10/12/2022
12.12.0-beta.1 2,221 8/23/2022
12.11.0 691,796 7/8/2022
12.11.0-beta.1 451 6/15/2022
12.10.0 282,427 5/2/2022
12.10.0-beta.1 587 4/12/2022
12.9.0 328,508 3/10/2022
12.9.0-beta.3 673 2/7/2022
12.9.0-beta.2 3,532 11/30/2021
12.9.0-beta.1 1,051 11/4/2021
12.8.0 687,856 9/9/2021
12.8.0-beta.2 1,682 7/23/2021
12.8.0-beta.1 207 7/23/2021
12.7.0 286,862 6/9/2021
12.7.0-beta.4 455 5/12/2021
12.7.0-beta.3 1,324 4/9/2021
12.7.0-beta.2 481 3/10/2021
12.7.0-beta.1 5,773 2/10/2021
12.6.2 48,723 5/21/2021
12.6.1 168,119 3/29/2021
12.6.0 337,824 1/12/2021
12.6.0-beta.1 965 12/7/2020
12.5.0 251,732 11/10/2020
12.5.0-preview.1 19,965 10/1/2020
12.4.0 684,044 8/31/2020
12.3.1 53,380 8/18/2020
12.3.0-preview.2 15,418 7/28/2020
12.3.0-preview.1 6,353 7/3/2020
12.2.2 318,933 6/5/2020
12.2.1 57,051 6/2/2020
12.2.0 38,557 5/6/2020
12.1.0 76,941 4/6/2020
12.0.0 67,973 3/12/2020
12.0.0-preview.9 12,066 2/11/2020
12.0.0-preview.8 26,459 1/10/2020
12.0.0-preview.7 4,458 12/4/2019
12.0.0-preview.6 5,273 11/7/2019
12.0.0-preview.5 1,609 11/6/2019